Merge pull request #54 from pouar/xopen

#define _XOPEN_SOURCE instead of prototyping wcwidth
This commit is contained in:
Jeff Bezanson 2019-06-06 19:55:40 -04:00 committed by GitHub
commit ec7601076a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -12,6 +12,7 @@
valid.
A UTF-8 validation routine is included.
*/
#define _XOPEN_SOURCE 700
#include <stdlib.h>
#include <stdio.h>
#include <string.h>

View File

@ -16,7 +16,7 @@ typedef unsigned long long u_int64_t;
extern int locale_is_utf8;
#if defined(__WIN32__) || defined(__linux__)
#if defined(__WIN32__)
extern int wcwidth(uint32_t);
#endif