home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ARM Club 1
/
ARM_CLUB_CD.iso
/
contents
/
apps
/
program
/
a
/
as1_23
/
source
/
h
/
global
< prev
next >
Encoding:
Amiga (detected)
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1992-07-20
|
263 b
|
27 lines
/*
* global.h
* Copyright © 1992 Niklas Röjemo
*/
#ifndef _global_h
#define _global_h
typedef unsigned int WORD;
typedef double FLOAT;
#ifndef BOOL
#define BOOL int
#endif
#define TRUE 1
#define FALSE 0
#ifndef NULL
#define NULL 0
#endif
#endif