7 lines
143 B
C
7 lines
143 B
C
|
#include <stdio.h>
|
||
|
|
||
|
#define userPrintf printf
|
||
|
#define userPuts(s) fputs(s, stdout)
|
||
|
#define userFlush() fflush(stdout)
|
||
|
#define userPutc putchar
|