summaryrefslogtreecommitdiff
path: root/libc/misc/error.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/misc/error.c')
-rw-r--r--libc/misc/error.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/misc/error.c b/libc/misc/error.c
index f54f836bd..e0552d3a8 100644
--- a/libc/misc/error.c
+++ b/libc/misc/error.c
@@ -29,6 +29,7 @@
#include <string.h>
#ifdef _LIBC
+# include <gnu/option-groups.h>
# include <libintl.h>
# include <stdbool.h>
# include <stdint.h>
@@ -131,7 +132,7 @@ error_tail (int status, int errnum, const char *message, va_list args)
#if _LIBC
if (_IO_fwide (stderr, 0) > 0)
{
-#ifdef OPTION_POSIX_WIDE_CHAR_DEVICE_IO
+#if __OPTION_POSIX_WIDE_CHAR_DEVICE_IO
# define ALLOCA_LIMIT 2000
size_t len = strlen (message) + 1;
wchar_t *wmessage = NULL;