Blame bits/wordsize.h

Packit Service 82fcde
#error "This file must be written based on the data type sizes of the target"
Packit Service 82fcde
Packit Service 82fcde
/* The following entries are a template for what defines should be in the
Packit Service 82fcde
   wordsize.h header file for a target.  */
Packit Service 82fcde
Packit Service 82fcde
/* Size in bits of the 'long int' and pointer types.  */
Packit Service 82fcde
#define __WORDSIZE
Packit Service 82fcde
Packit Service 82fcde
/* This should be set to 1 if __WORDSIZE is 32 and size_t is type
Packit Service 82fcde
   'unsigned long' instead of type 'unsigned int'.  This will ensure
Packit Service 82fcde
   that SIZE_MAX is defined as an unsigned long constant instead of an
Packit Service 82fcde
   unsigned int constant.  Set to 0 if __WORDSIZE is 32 and size_t is
Packit Service 82fcde
   'unsigned int' and leave undefined if __WORDSIZE is 64.  */
Packit Service 82fcde
#define __WORDSIZE32_SIZE_ULONG
Packit Service 82fcde
Packit Service 82fcde
/* This should be set to 1 if __WORDSIZE is 32 and ptrdiff_t is type 'long'
Packit Service 82fcde
   instead of type 'int'.  This will ensure that PTRDIFF_MIN and PTRDIFF_MAX
Packit Service 82fcde
   are defined as long constants instead of int constants.  Set to 0 if
Packit Service 82fcde
   __WORDSIZE is 32 and ptrdiff_t is type 'int' and leave undefined if
Packit Service 82fcde
   __WORDSIZE is 64.  */
Packit Service 82fcde
#define __WORDSIZE32_PTRDIFF_LONG
Packit Service 82fcde
Packit Service 82fcde
/* Set to 1 in order to force time types to be 32 bits instead of 64 bits in
Packit Service 82fcde
   struct lastlog and struct utmp{,x} on 64-bit ports.  This may be done in
Packit Service 82fcde
   order to make 64-bit ports compatible with 32-bit ports.  Set to 0 for
Packit Service 82fcde
   64-bit ports where the time types are 64-bits or for any 32-bit ports.  */
Packit Service 82fcde
#define __WORDSIZE_TIME64_COMPAT32