diff options
Diffstat (limited to 'test.c')
-rw-r--r-- | test.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -22,6 +22,7 @@ SOFTWARE. */ #include <stdlib.h> #include <string.h> +#include <stdio.h> double test_double(double x) { return x * 0.5; @@ -45,3 +46,7 @@ int test_two_params(int a, int b) { return a + b; } +void test_void(char* s) { + printf("%s", s); +} + |