]> hydra-www.ietfng.org Git - acmetensortoys-chiptunes/commitdiff
Add progenv/types.h (should have been earlier)
authorNathaniel Wesley Filardo <nwf@smaug.priv.ietfng.org>
Sun, 21 Feb 2010 06:50:41 +0000 (01:50 -0500)
committerNathaniel Wesley Filardo <nwf@smaug.priv.ietfng.org>
Sun, 21 Feb 2010 06:50:41 +0000 (01:50 -0500)
progenv/types.h [new file with mode: 0644]

diff --git a/progenv/types.h b/progenv/types.h
new file mode 100644 (file)
index 0000000..d8da7c1
--- /dev/null
@@ -0,0 +1,12 @@
+#ifndef _PROGENV_TYPES_H_
+#define _PROGENV_TYPES_H_
+
+#include <stdint.h>
+
+typedef uint8_t u8;
+typedef uint16_t u16;
+typedef int8_t s8;
+typedef uint16_t s16;
+typedef uint32_t u32;
+
+#endif