1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-29 03:17:53 -04:00

[renderer] Compilation fix related to combining characters

This commit is contained in:
Witold Filipczyk 2022-03-03 17:30:20 +01:00
parent 90a7c95a93
commit b921db70ba

View File

@ -8,8 +8,10 @@
* wcwidth(). Therefore the configure script should have disabled * wcwidth(). Therefore the configure script should have disabled
* CONFIG_COMBINE if wcwidth() doesn't exist. */ * CONFIG_COMBINE if wcwidth() doesn't exist. */
#ifdef CONFIG_COMBINE #ifdef CONFIG_COMBINE
#ifndef _XOPEN_SOURCE
#define _XOPEN_SOURCE 500 /* for wcwidth */ #define _XOPEN_SOURCE 500 /* for wcwidth */
#endif #endif
#endif
#include <ctype.h> #include <ctype.h>
#include <stdarg.h> #include <stdarg.h>