#ifndef _MCS360_DEFINED_ #define _MCS360_DEFINED_ #include /* for size_t */ typedef int bool; typedef int BOOL; typedef int Boolean; static const int false = 0, true = 1; static const int False = 0, True = 1; static const int FALSE = 0, TRUE = 1; void err_mesg( const char *function, const char *mesg); void *checked_malloc( size_t size); void *checked_realloc( void *old_addr, size_t new_size); #endif