diff options
author | click <none@none> | 2010-08-07 19:01:57 +0200 |
---|---|---|
committer | click <none@none> | 2010-08-07 19:01:57 +0200 |
commit | ce435f6d4f84462c0707bbc608d767648d5e99c3 (patch) | |
tree | dabac44fd559c925acf2171adb0ae3038f05ad7b /externals/mysql/extlib/dbug/main.c | |
parent | 3cc24e0971f96b9ffa4032a154750e4224ea499d (diff) |
BuildSystem/VS: Remove now defunct an unmaintained buildfiles - use CMake for generating solutionfiles
--HG--
branch : trunk
Diffstat (limited to 'externals/mysql/extlib/dbug/main.c')
-rw-r--r-- | externals/mysql/extlib/dbug/main.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/externals/mysql/extlib/dbug/main.c b/externals/mysql/extlib/dbug/main.c deleted file mode 100644 index 00e80c8ba31..00000000000 --- a/externals/mysql/extlib/dbug/main.c +++ /dev/null @@ -1,24 +0,0 @@ -#include <dbug.h> - -int main (argc, argv) -int argc; -char *argv[]; -{ - int result, ix; - extern int factorial(int); - DBUG_ENTER ("main"); - DBUG_PROCESS (argv[0]); - for (ix = 1; ix < argc && argv[ix][0] == '-'; ix++) { - switch (argv[ix][1]) { - case '#': - DBUG_PUSH (&(argv[ix][2])); - break; - } - } - for (; ix < argc; ix++) { - DBUG_PRINT ("args", ("argv[%d] = %s", ix, argv[ix])); - result = factorial (atoi(argv[ix])); - printf ("%d\n", result); - } - DBUG_RETURN (0); -} |