diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/lib.c | 5 | ||||
-rw-r--r-- | lib/lib.h | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -155,6 +155,11 @@ void xprintf(char *format, ...) if (ferror(stdout)) perror_exit("write"); } +void xputs(char *s) +{ + if (EOF == puts(s)) perror_exit("write"); +} + void xputc(char c) { if (EOF == fputc(c, stdout)) perror_exit("write"); @@ -48,6 +48,7 @@ void *xstrndup(char *s, size_t n); void *xstrdup(char *s); char *xmsprintf(char *format, ...); void xprintf(char *format, ...); +void xputs(char *s); void xputc(char c); void xflush(void); void xexec(char **argv); |