diff options
author | unknown <jani@ua141d10.elisa.omakaista.fi> | 2005-01-13 19:24:54 +0200 |
---|---|---|
committer | unknown <jani@ua141d10.elisa.omakaista.fi> | 2005-01-13 19:24:54 +0200 |
commit | 365711af1717570a8af1e4f8bdcada033449a48e (patch) | |
tree | c0f87dde3037f7ee40526843f8e919e49e07f751 /include | |
parent | 21dce6253405598e5c6f9c669ee6ef5e550c2ca3 (diff) | |
download | mariadb-git-365711af1717570a8af1e4f8bdcada033449a48e.tar.gz |
A patch for Netware.
Diffstat (limited to 'include')
-rw-r--r-- | include/config-netware.h | 1 | ||||
-rw-r--r-- | include/help_end.h | 1 | ||||
-rw-r--r-- | include/help_start.h | 2 |
3 files changed, 4 insertions, 0 deletions
diff --git a/include/config-netware.h b/include/config-netware.h index 3e145f566a1..e84fd6ae472 100644 --- a/include/config-netware.h +++ b/include/config-netware.h @@ -45,6 +45,7 @@ extern "C" { #undef HAVE_SCHED_H #undef HAVE_SYS_MMAN_H #undef HAVE_SYNCH_H +#undef HAVE_MMAP #define HAVE_PTHREAD_ATTR_SETSTACKSIZE 1 #define HAVE_PTHREAD_SIGMASK 1 #define HAVE_PTHREAD_YIELD_ZERO_ARG 1 diff --git a/include/help_end.h b/include/help_end.h index a63d9e7ca9f..3bd16c09e3b 100644 --- a/include/help_end.h +++ b/include/help_end.h @@ -2,5 +2,6 @@ #undef printf #undef puts #undef fputs +#undef fputc #undef putchar #endif diff --git a/include/help_start.h b/include/help_start.h index 38bb91f7655..7ffde1ab803 100644 --- a/include/help_start.h +++ b/include/help_start.h @@ -4,4 +4,6 @@ #define printf consoleprintf #define puts(s) consoleprintf("%s\n",s) #define fputs(s,f) puts(s) +#define fputc(s,f) consoleprintf("%c", s) +#define putchar(s) consoleprintf("%c", s) #endif |