summaryrefslogtreecommitdiff
path: root/out.c
diff options
context:
space:
mode:
Diffstat (limited to 'out.c')
-rw-r--r--out.c23
1 files changed, 22 insertions, 1 deletions
diff --git a/out.c b/out.c
index 69820de..56b0d1d 100644
--- a/out.c
+++ b/out.c
@@ -1,2 +1,23 @@
+#include <stdint.h>
+typedef int8_t i8;
+typedef int16_t i16;
+typedef int32_t i32;
+typedef int64_t i64;
+typedef uint8_t u8;
+typedef uint16_t u16;
+typedef uint32_t u32;
+typedef uint64_t u64;
+typedef float f32;
+typedef double f64;
+typedef unsigned char bool;
+#define false ((bool)0)
+#define true ((bool)1)
+
+
/* declarations */
-;/* code */
+void main__();
+/* code */
+int main() {
+ main__();
+ return 0;
+}