diff options
Diffstat (limited to 'lib/lib.h')
-rw-r--r-- | lib/lib.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -38,6 +38,9 @@ void xrealloc(void **ptr, size_t size); void *xstrndup(char *s, size_t n); void *xstrdup(char *s); char *xmsprintf(char *format, ...); +void xprintf(char *format, ...); +void xputc(char c); +void xflush(void); void xexec(char **argv); void xaccess(char *path, int flags); int xcreate(char *path, int flags, int mode); |