summaryrefslogtreecommitdiff
path: root/out.c
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2019-08-27 14:38:15 -0400
committerLeo Tenenbaum <pommicket@gmail.com>2019-08-27 14:38:15 -0400
commit126c496ad8a6e9a3b90ecd25c8ff3ead630f7f65 (patch)
treee4bccdc0652e1c72d756bdb03e2a7e30b6119b84 /out.c
parentb40f9a3fe9f648f685649f65977ad595c998cbb7 (diff)
checked undeclared identifiers; not totally done yet
Diffstat (limited to 'out.c')
-rw-r--r--out.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/out.c b/out.c
index 767e654..0d58e0e 100644
--- a/out.c
+++ b/out.c
@@ -1,12 +1,7 @@
#include "out.h"
/* toc */
-void main__(void) {
- int64_t foo = 3;
- void (*bar)() = 0;
+void main__() {
}
-
-int main(void) {
- main__();
- return 0;
+void foo() {
}