diff options
author | jani@a193-229-222-105.elisa-laajakaista.fi <> | 2005-08-24 22:03:34 +0300 |
---|---|---|
committer | jani@a193-229-222-105.elisa-laajakaista.fi <> | 2005-08-24 22:03:34 +0300 |
commit | fe977b0cd0f2cbabd0a3804cfd83a02698601ad7 (patch) | |
tree | c0c34797bba5e900d1bd182f5a096c63abba60d1 /include | |
parent | 9f72d504b42d0e944bbb84a235075a29696f1358 (diff) | |
download | mariadb-git-fe977b0cd0f2cbabd0a3804cfd83a02698601ad7.tar.gz |
Several fixes for Netware.
Diffstat (limited to 'include')
-rw-r--r-- | include/help_end.h | 1 | ||||
-rw-r--r-- | include/help_start.h | 2 |
2 files changed, 3 insertions, 0 deletions
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 |