summaryrefslogtreecommitdiffstats
path: root/Tests/CompileFeatures/c_function_prototypes.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/CompileFeatures/c_function_prototypes.c')
-rw-r--r--Tests/CompileFeatures/c_function_prototypes.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/Tests/CompileFeatures/c_function_prototypes.c b/Tests/CompileFeatures/c_function_prototypes.c
new file mode 100644
index 0000000..ab3c948
--- /dev/null
+++ b/Tests/CompileFeatures/c_function_prototypes.c
@@ -0,0 +1,9 @@
+
+int someFunc(int a, int b);
+
+int someFunc(int a, int b)
+{
+ (void)a;
+ (void)b;
+ return 0;
+}