diff options
author | Rat <none@none> | 2010-06-20 17:13:10 +0200 |
---|---|---|
committer | Rat <none@none> | 2010-06-20 17:13:10 +0200 |
commit | e0a5d0011605404adb384abd37d88513ec8f7088 (patch) | |
tree | d1ca235cbe48b0448082074dc2dbc4b1f5b3fa85 /externals/mysql/extlib/dbug/example3.c | |
parent | fc0dc9556dd5a0b19184af5b77c342831a3e9a80 (diff) |
added mysql source for win build
--HG--
branch : trunk
Diffstat (limited to 'externals/mysql/extlib/dbug/example3.c')
-rw-r--r-- | externals/mysql/extlib/dbug/example3.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/externals/mysql/extlib/dbug/example3.c b/externals/mysql/extlib/dbug/example3.c new file mode 100644 index 00000000000..c035cdfffa0 --- /dev/null +++ b/externals/mysql/extlib/dbug/example3.c @@ -0,0 +1,14 @@ +main (argc, argv) +int argc; +char *argv[]; +{ +# ifdef DEBUG + printf ("argv[0] = %d\n", argv[0]); +# endif + /* + * Rest of program + */ +# ifdef DEBUG + printf ("== done ==\n"); +# endif +} |