summaryrefslogtreecommitdiffstats
path: root/.vim/c-support/codesnippets/main.c
diff options
context:
space:
mode:
Diffstat (limited to '.vim/c-support/codesnippets/main.c')
-rw-r--r--.vim/c-support/codesnippets/main.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/.vim/c-support/codesnippets/main.c b/.vim/c-support/codesnippets/main.c
deleted file mode 100644
index 770f5d5..0000000
--- a/.vim/c-support/codesnippets/main.c
+++ /dev/null
@@ -1,20 +0,0 @@
-#include <errno.h>
-#include <math.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-
-/*
- * === FUNCTION ======================================================================
- * Name: main
- * Description: main function
- * =====================================================================================
- */
- int
-main ( int argc, char *argv[] )
-{
- printf ("\nProgram %s\n\n", argv[0] );
-
- return EXIT_SUCCESS;
-} /* ---------- end of function main ---------- */
-