aboutsummaryrefslogtreecommitdiff
path: root/externals/mysql/extlib/dbug/example3.c
diff options
context:
space:
mode:
authorRat <none@none>2010-06-20 17:13:10 +0200
committerRat <none@none>2010-06-20 17:13:10 +0200
commite0a5d0011605404adb384abd37d88513ec8f7088 (patch)
treed1ca235cbe48b0448082074dc2dbc4b1f5b3fa85 /externals/mysql/extlib/dbug/example3.c
parentfc0dc9556dd5a0b19184af5b77c342831a3e9a80 (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.c14
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
+}