diff options
Diffstat (limited to 'Base/home/anon/Source/little/main.cpp')
-rw-r--r-- | Base/home/anon/Source/little/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Base/home/anon/Source/little/main.cpp b/Base/home/anon/Source/little/main.cpp index 1e8d4a58c0..2fa2d31126 100644 --- a/Base/home/anon/Source/little/main.cpp +++ b/Base/home/anon/Source/little/main.cpp @@ -1,5 +1,6 @@ #include <stdio.h> #include <sys/stat.h> +#include "other.h" enum TestEnum { ValueOne, @@ -19,6 +20,7 @@ int main(int, char**) printf("my_struct.x is %d\n", my_struct.x); for (int i = 0; i < 3; ++i) { // This is a comment :^) + func(); printf("Hello friends!\n"); mkdir("/tmp/xyz", 0755); } |