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