gbdk-releases/gbdk-lib/include/types.h
2015-01-10 16:25:08 +01:00

26 lines
343 B
C

/** @file types.h
Basic types.
Directly include the port specific file.
*/
#ifndef TYPES_INCLUDE
#define TYPES_INCLUDE
#include <asm/types.h>
/** Good 'ol NULL.
*/
#define NULL 0
/** A 'false' value.
*/
#define FALSE 0
/** A 'true' value.
*/
#define TRUE 1
/** No longer used.
*/
typedef void * POINTER;
#endif