# pragma l /* list off */
# pragma p /*non portable code */

/**************************************************************************

                         H.STDDEF - standard definitions
                         -------------------------------

Author : David Allison
Date   : 10 July 1987
Issue  : 1.0

(C) 1987 Beebug Limited

***************************************************************************/


typedef int bool ;                       /* boolean type */
typedef unsigned short int byte ;        /* a byte */

# redef ptrdiff_t int                  /* ptr subtraction type */
# redef size_t int                     /* sizeof type */

# redef NULL 0
# redef TRUE 1
# redef FALSE 0

# define offsetof(type,id) ((char*)(&type.id) - (char *)&type)  /* member offset in struct */

