summaryrefslogtreecommitdiffstats
path: root/src/examples/printf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/examples/printf.c')
-rw-r--r--src/examples/printf.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/examples/printf.c b/src/examples/printf.c
new file mode 100644
index 0000000..2072e8e
--- /dev/null
+++ b/src/examples/printf.c
@@ -0,0 +1,10 @@
+#include <stdio.h>
+#include <syscall.h>
+
+int
+main (int argc, char **argv)
+{
+ printf ("You got it, use your debugging skills during the labs!\n");
+
+ return EXIT_SUCCESS;
+}