X-Git-Url: http://plrg.eecs.uci.edu/git/?p=cdsspec-compiler.git;a=blobdiff_plain;f=test.c;h=d771ce4368c0d8e0334826134f17bd4292323b0d;hp=2dec27eceb3b6ac000f73b34cd581585e452b24f;hb=f180f57604001398f2bcd9587aa508d0726a1399;hpb=efe3f6d7242a505f593c8535c7c1339ccc1bd11a diff --git a/test.c b/test.c index 2dec27e..d771ce4 100644 --- a/test.c +++ b/test.c @@ -1,14 +1,9 @@ #include -#include "test.h" -void _foo(struct Test t) { - printf("%d\n", t.x); -} - -void foo(struct Test t) { - _foo(t); -} +int test(); int main() { - return 0; + int a = test(); + printf("%d\n", a); + return 1; }