diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/libhaiku.c | 4 | ||||
-rw-r--r-- | src/libhaiku.h | 2 |
2 files changed, 3 insertions, 3 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) diff --git a/src/libhaiku.h b/src/libhaiku.h index 5cb26ef..ee2e781 100644 --- a/src/libhaiku.h +++ b/src/libhaiku.h @@ -26,7 +26,7 @@ * @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*); #endif |