1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-28 01:35:32 +00: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
* CONFIG_COMBINE if wcwidth() doesn't exist. */
#ifdef CONFIG_COMBINE
#ifndef _XOPEN_SOURCE
#define _XOPEN_SOURCE 500 /* for wcwidth */
#endif
#endif
#include <ctype.h>
#include <stdarg.h>