summarylogtreecommitdiffstats
path: root/skeleton-c
diff options
context:
space:
mode:
Diffstat (limited to 'skeleton-c')
-rw-r--r--skeleton-c19
1 files changed, 19 insertions, 0 deletions
diff --git a/skeleton-c b/skeleton-c
new file mode 100644
index 000000000000..f5d9b073a486
--- /dev/null
+++ b/skeleton-c
@@ -0,0 +1,19 @@
+/*
+ * (C) 2015 by Christian Hesse <mail@eworm.de>
+ *
+ * This software may be used and distributed according to the terms
+ * of the GNU General Public License, incorporated herein by reference.
+ *
+ * This is an example code skeleton provided by vim-skeleton.
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+
+int main(int argc, char **argv) {
+ /* your code goes here */
+
+ return EXIT_SUCCESS;
+}
+
+// vim: set syntax=c: