Last change
on this file since 597 was
49,
checked in by Sam Hocevar, 15 years ago
|
- Imported original public domain release, for future reference.
|
-
Property svn:keywords set to
Id
|
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 | |
---|
10 | typedef short WORD; |
---|
11 | typedef unsigned short UWORD; |
---|
12 | typedef char TEXT; |
---|
13 | typedef unsigned char UTINY; |
---|
14 | #ifndef LONG |
---|
15 | typedef long LONG; |
---|
16 | #endif |
---|
17 | typedef unsigned long ULONG; |
---|
18 | typedef int INT; |
---|
19 | |
---|
20 | |
---|
Note: See
TracBrowser
for help on using the repository browser.