mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-30 04:26:45 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			281 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			281 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)
 | |
| #define fputc(s,f)   consoleprintf("%c", s)
 | |
| #define putchar(s)   consoleprintf("%c", s)
 | |
| #endif
 | 
