2008-12-31 12:12:44 +08:00
|
|
|
/* wordsize.h - Linux compatibility */
|
|
|
|
|
|
|
|
#ifndef _WORDSIZE_H
|
|
|
|
#define _WORDSIZE_H 1
|
2013-04-23 17:44:36 +08:00
|
|
|
#ifdef __x86_64__
|
|
|
|
# define __WORDSIZE 64
|
|
|
|
# define __WORDSIZE_COMPAT32 1
|
|
|
|
#else
|
|
|
|
# define __WORDSIZE 32
|
|
|
|
#endif
|
2008-12-31 12:12:44 +08:00
|
|
|
#endif /*_WORDSIZE_H*/
|