mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
8 lines
193 B
C
8 lines
193 B
C
|
/* Divert all help information on NetWare to logger screen. */
|
||
|
|
||
|
#ifdef __NETWARE__
|
||
|
#define printf consoleprintf
|
||
|
#define puts(s) consoleprintf("%s\n",s)
|
||
|
#define fputs(s,f) puts(s)
|
||
|
#endif
|