orion_old/libc/stdio/puts.c

6 lines
85 B
C

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