diff options
Diffstat (limited to '')
-rw-r--r-- | dot_vim/c-support/codesnippets/main.c | 20 | ||||
-rw-r--r-- | dot_vim/c-support/codesnippets/main.cc | 18 |
2 files changed, 0 insertions, 38 deletions
diff --git a/dot_vim/c-support/codesnippets/main.c b/dot_vim/c-support/codesnippets/main.c deleted file mode 100644 index 770f5d5..0000000 --- a/dot_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 ---------- */ - diff --git a/dot_vim/c-support/codesnippets/main.cc b/dot_vim/c-support/codesnippets/main.cc deleted file mode 100644 index d87f891..0000000 --- a/dot_vim/c-support/codesnippets/main.cc +++ /dev/null @@ -1,18 +0,0 @@ -#include <fstream> -#include <iomanip> -#include <iostream> - -using namespace std; - -// === FUNCTION ====================================================================== -// Name: main -// Description: main function -// ===================================================================================== - int -main ( int argc, char *argv[] ) -{ - cout << "\nProgram " << argv[0] << endl << endl; - - return EXIT_SUCCESS; -} // ---------- end of function main ---------- - |