diff options
Diffstat (limited to 'test cases/common/194 static threads/prog.c')
-rw-r--r-- | test cases/common/194 static threads/prog.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test cases/common/194 static threads/prog.c b/test cases/common/194 static threads/prog.c new file mode 100644 index 0000000..14a7c76 --- /dev/null +++ b/test cases/common/194 static threads/prog.c @@ -0,0 +1,6 @@ +extern void *g(void); + +int main(void) { + g(); + return 0; +} |