diff options
Diffstat (limited to 'innobase/ut')
-rw-r--r-- | innobase/ut/ut0dbg.c | 7 | ||||
-rw-r--r-- | innobase/ut/ut0mem.c | 2 | ||||
-rw-r--r-- | innobase/ut/ut0ut.c | 1 |
3 files changed, 2 insertions, 8 deletions
diff --git a/innobase/ut/ut0dbg.c b/innobase/ut/ut0dbg.c index 970dd501fad..d6593b70217 100644 --- a/innobase/ut/ut0dbg.c +++ b/innobase/ut/ut0dbg.c @@ -18,10 +18,3 @@ ibool ut_dbg_stop_threads = FALSE; /* Null pointer used to generate memory trap */ ulint* ut_dbg_null_ptr = NULL; - -/* Dummy function to prevent gcc from ignoring this file */ -void -ut_dummy(void) -{ - printf("Hello world\n"); -} diff --git a/innobase/ut/ut0mem.c b/innobase/ut/ut0mem.c index 5dee08d64c3..eca738f0924 100644 --- a/innobase/ut/ut0mem.c +++ b/innobase/ut/ut0mem.c @@ -244,4 +244,4 @@ ut_str_contains( } return(FALSE); -}
\ No newline at end of file +} diff --git a/innobase/ut/ut0ut.c b/innobase/ut/ut0ut.c index 06bfb5c45ba..be311764261 100644 --- a/innobase/ut/ut0ut.c +++ b/innobase/ut/ut0ut.c @@ -13,6 +13,7 @@ Created 5/11/1994 Heikki Tuuri #endif #include <stdarg.h> +#include <string.h> #include "ut0sort.h" |