summaryrefslogtreecommitdiff
path: root/out.c
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2019-09-01 15:21:25 -0400
committerLeo Tenenbaum <pommicket@gmail.com>2019-09-01 15:21:25 -0400
commitcc7d494226f41d76208bd2a0613a26435247cc87 (patch)
tree77ba93bae293ea2e2299ab54bea5c0f58065bce0 /out.c
parent8640ec94e95156551ce90a8fe4d96eddc6e66f88 (diff)
improved the way identifiers worked (now they use a single block array)
Diffstat (limited to 'out.c')
-rw-r--r--out.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/out.c b/out.c
index d3c1aa0..d363960 100644
--- a/out.c
+++ b/out.c
@@ -1,10 +1,10 @@
#include "out.h"
/* toc */
-void foo(float a[10], int64_t (*out__)[3]) {
+void foo(void) {
}
void main__(void) {
- void (*asdkofhj)(int64_t (*out__)[3]) = NULL;
+ foo();
}
int main(void) {