mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-16 03:19:54 +08:00
12 lines
224 B
C
12 lines
224 B
C
/* wordsize.h - Linux compatibility */
|
|
|
|
#ifndef _WORDSIZE_H
|
|
#define _WORDSIZE_H 1
|
|
#ifdef __x86_64__
|
|
# define __WORDSIZE 64
|
|
# define __WORDSIZE_COMPAT32 1
|
|
#else
|
|
# define __WORDSIZE 32
|
|
#endif
|
|
#endif /*_WORDSIZE_H*/
|