Welcome to mirror list, hosted at ThFree Co, Russian Federation.

wordsize.h « bits « include « cygwin « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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*/