source: abuse/trunk/src/imlib/include/std.h @ 28

Last change on this file since 28 was 2, checked in by Sam Hocevar, 18 years ago
  • imported original 0.7.0 tarball
File size: 315 bytes
Line 
1/* STD.H - My own standard header file...
2 */
3
4#define LOCAL
5#define IMPORT //extern
6
7#define FAST register
8#include "system.h"
9
10typedef short WORD;
11typedef unsigned short UWORD;
12typedef char TEXT;
13typedef unsigned char UTINY;
14#ifndef LONG
15typedef long LONG;
16#endif
17typedef unsigned long ULONG;
18typedef int INT;
19
20
Note: See TracBrowser for help on using the repository browser.