diff options
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
|
