.gitignore: ignore local vscode workspace settings file
[lttng-tools.git] / tests / utils / testapp / userspace-probe-elf-binary / userspace-probe-elf-binary.c
index d4304541d34a7a451f8d001857aea304ef96ecd4..7a5040051e7314e137b7e22d30ce56f853af0574 100644 (file)
@@ -8,13 +8,13 @@
 #include "foo.h"
 volatile int not_a_function = 0;
 
-void __attribute__ ((noinline)) test_function();
-void __attribute__ ((noinline)) test_function()
+void __attribute__((noinline)) test_function(void);
+void __attribute__((noinline)) test_function(void)
 {
        not_a_function += 1;
 }
 
-int main(int argc, char *argv[])
+int main(void)
 {
        test_function();
        dynamic_symbol(42);
This page took 0.024598 seconds and 4 git commands to generate.