6 lines
87 B
C
6 lines
87 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int puts(const char * string) {
|
||
|
return printf("%s\n", string);
|
||
|
}
|