diff options
Diffstat (limited to '')
-rw-r--r-- | include/error.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/error.h b/include/error.h index 0716530..8cce80c 100644 --- a/include/error.h +++ b/include/error.h @@ -60,7 +60,7 @@ void error(int, int, const char*, ...) * @param format Formatting-string for a detailed description of what happend. * @param args Formatting-arguments for `format`. */ -#if defined(_SLIBC_SOURCE) +#if defined(__SLIBC_SOURCE) void verror(int, int, const char*, va_list); #endif @@ -100,7 +100,7 @@ void error_at_line(int, int, const char*, unsigned int, const char*, ...) * @param format Formatting-string for a detailed description of what happend. * @param args Formatting-arguments for `format`. */ -#if defined(_SLIBC_SOURCE) +#if defined(__SLIBC_SOURCE) void verror_at_line(int, int, const char*, unsigned int, const char*, va_list); #endif |