summaryrefslogtreecommitdiffstats
path: root/t/recipes/checks/languages/python/files-python-general/build-spec/orig/lib.c
diff options
context:
space:
mode:
Diffstat (limited to 't/recipes/checks/languages/python/files-python-general/build-spec/orig/lib.c')
-rw-r--r--t/recipes/checks/languages/python/files-python-general/build-spec/orig/lib.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/t/recipes/checks/languages/python/files-python-general/build-spec/orig/lib.c b/t/recipes/checks/languages/python/files-python-general/build-spec/orig/lib.c
new file mode 100644
index 0000000..30d6ed5
--- /dev/null
+++ b/t/recipes/checks/languages/python/files-python-general/build-spec/orig/lib.c
@@ -0,0 +1,4 @@
+int do_something(int (*a)(char *)){
+ char test[10];
+ return a(test);
+}