summaryrefslogtreecommitdiff
path: root/out.c
blob: ed273e4afe58b4c9e2ca57a64b62032e054cb00e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "out.h"

/* toc */
void main__(void) {
	float foo = 3; float bar = 3; 
	float abc = bar; 
}

int main(void) {
	main__();
	return 0;
}