Fix some bugs when testing opensds ansible
[stor4nfv.git] / src / ceph / src / common / arch.h
1 #ifndef CEPH_ARCH_H
2 #define CEPH_ARCH_H
3
4 static const char *get_arch()
5 {
6 #if defined(__i386__)
7   return "i386";
8 #elif defined(__x86_64__)
9   return "x86-64";
10 #else
11     return "unknown";
12 #endif
13 }
14
15 #endif