aboutsummaryrefslogtreecommitdiff
path: root/bin/ak-file.c
diff options
context:
space:
mode:
Diffstat (limited to 'bin/ak-file.c')
-rw-r--r--bin/ak-file.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/bin/ak-file.c b/bin/ak-file.c
new file mode 100644
index 0000000..3d2ae17
--- /dev/null
+++ b/bin/ak-file.c
@@ -0,0 +1,27 @@
+/*
+ * =====================================================================================
+ *
+ * Filename: file.c
+ *
+ * Description:
+ *
+ * Version: 1.0
+ * Created: 08/12/22 07:23:49
+ * Revision: none
+ * Compiler: gcc
+ *
+ * Author: Kaotisk Hund (kh), kaotisk@arching-kaos.org
+ * Company: ArchingKaos.Com
+ *
+ * =====================================================================================
+ */
+
+#include <stdio.h>
+
+int main(int argc, char **argv)
+{
+ (void)argc;
+ (void)argv;
+ printf("printf used\n");
+ return 0;
+}