diff options
| author | 2024-10-25 23:24:45 -0400 | |
|---|---|---|
| committer | 2024-10-25 23:24:45 -0400 | |
| commit | 36b6d84ee4b520bdf43891ea86df03cf660cb464 (patch) | |
| tree | 3aa78d9b1a3f04c0aeaaf86c8a60106115bf5c85 /intdef.h | |
| download | rt-36b6d84ee4b520bdf43891ea86df03cf660cb464.tar.gz rt-36b6d84ee4b520bdf43891ea86df03cf660cb464.zip | |
create project
Diffstat (limited to 'intdef.h')
| -rw-r--r-- | intdef.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/intdef.h b/intdef.h new file mode 100644 index 0000000..03a8ac3 --- /dev/null +++ b/intdef.h @@ -0,0 +1,16 @@ +// SPDX-License-Identifier: ISC
+// SPDX-FileCopyrightText: 2024 Matthew Wozniak <me@woz.blue>
+
+#ifndef INTDEF_H
+#define INTDEF_H
+
+typedef unsigned char byte;
+typedef unsigned short ushort;
+typedef unsigned int uint;
+typedef unsigned long ulong;
+typedef long long vlong;
+typedef unsigned long long uvlong;
+
+#endif
+
+// vi: sw=4 ts=4 noet tw=80 cc=80
|
