diff options
Diffstat (limited to 'sysdeps/wordsize-64')
-rw-r--r-- | sysdeps/wordsize-64/bits/environments.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/sysdeps/wordsize-64/bits/environments.h b/sysdeps/wordsize-64/bits/environments.h index af2d212618..f1d5bb8135 100644 --- a/sysdeps/wordsize-64/bits/environments.h +++ b/sysdeps/wordsize-64/bits/environments.h @@ -16,15 +16,14 @@ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#ifndef _BITS_ENVIRONMENTS_H -#define _BITS_ENVIRONMENTS_H 1 +#ifndef _UNISTD_H +# error "Never include this file directly. Use <unistd.h> instead" +#endif -/* We can never provide environments with 64-bit wide pointers. */ +/* We can never provide environments with 32-bit wide pointers. */ #define _XBS5_ILP32_OFF32 -1 #define _XBS5_ILP32_OFFBIG -1 -/* By default we have 64-bit wide `int', `long int', pointers and `off_t'. */ +/* By default we have 64-bit wide `long int', pointers and `off_t'. */ #define _XBS5_LP64_OFF32 1 #define _XBS5_LPBIG_OFFBIG 1 - -#endif /* bits/environments.h */ |