summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/include/bits/wordsize.h
blob: b0ee337f89aaa484502733508523b40da6a9c974 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* 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*/