summaryrefslogtreecommitdiffstats
path: root/.vim/c-support/codesnippets/main.cc
diff options
context:
space:
mode:
authorbnewbold <bnewbold@robocracy.org>2010-04-23 01:20:36 -0400
committerbnewbold <bnewbold@robocracy.org>2010-04-23 01:20:36 -0400
commite0cb5545ccb95cbc6cf03fd256cca622f613ecdf (patch)
tree219ab0ba233d717b90b21968acf51454cd6c9dc5 /.vim/c-support/codesnippets/main.cc
parentf505cc10656d4262dba69aa6ced81dd9024ec592 (diff)
downloadopenwrt-repro-e0cb5545ccb95cbc6cf03fd256cca622f613ecdf.tar.gz
openwrt-repro-e0cb5545ccb95cbc6cf03fd256cca622f613ecdf.zip
removed a bunch of unused vim stuff
Diffstat (limited to '.vim/c-support/codesnippets/main.cc')
-rw-r--r--.vim/c-support/codesnippets/main.cc19
1 files changed, 0 insertions, 19 deletions
diff --git a/.vim/c-support/codesnippets/main.cc b/.vim/c-support/codesnippets/main.cc
deleted file mode 100644
index f3060ef..0000000
--- a/.vim/c-support/codesnippets/main.cc
+++ /dev/null
@@ -1,19 +0,0 @@
-#include <cstdlib>
-#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 ----------
-