cscg22-gearboy

CSCG 2022 Challenge 'Gearboy'
git clone https://git.sinitax.com/sinitax/cscg22-gearboy
Log | Files | Refs | sfeed.txt

types.h (330B)


      1/** @file types.h
      2    Basic types.  
      3    Directly include the port specific file.
      4*/
      5#ifndef TYPES_INCLUDE
      6#define TYPES_INCLUDE
      7
      8#include <asm/types.h>
      9
     10/** Good 'ol NULL.
     11 */
     12#define	NULL 0
     13
     14/** A 'false' value.
     15 */
     16#define FALSE 0
     17/** A 'true' value.
     18 */
     19#define TRUE 1
     20
     21/** No longer used.
     22 */
     23typedef void * POINTER;
     24
     25#endif