FENIX_libc/stdio/puts.c

5 lines
87 B
C
Executable file

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