diff options
Diffstat (limited to 'src/libhaiku.c')
-rw-r--r-- | src/libhaiku.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libhaiku.c b/src/libhaiku.c index fe953b4..07cccd9 100644 --- a/src/libhaiku.c +++ b/src/libhaiku.c @@ -59,7 +59,7 @@ static int random_int(int n) #ifdef __GNUC__ __attribute__((__sentinel__)) #endif -static const char * random_haiku(const char *str, ... /*, NULL */) +static const char* random_haiku(const char* str, ... /*, NULL */) { int n = 1; const char *s = str; @@ -88,7 +88,7 @@ static const char * random_haiku(const char *str, ... /*, NULL */) * @param s The argument to pass to `perror` in case we call back to it. * `NULL` if you never what `perror` to be used. */ -void libhaiku_perror(const char *s) +void libhaiku_perror(const char* s) { #define H(...) do { fprintf(stderr, "%s", random_haiku(__VA_ARGS__, NULL)); return; } while (0) |