FENIX_libc/stdio/puts.c

6 lines
87 B
C
Raw Normal View History

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