Try fixing Cygwin

This commit is contained in:
Evan Miller 2020-08-05 09:00:38 -04:00
parent 41c7e01ec7
commit 7dcb42eae3
2 changed files with 2 additions and 2 deletions

View File

@ -96,7 +96,7 @@ typedef struct GOptionContext {
#define g_free free
#define g_realloc realloc
#ifdef _WIN32
#if defined _WIN32 || defined __CYGWIN__
#define g_strdup _strdup
#else
#define g_strdup strdup

View File

@ -83,7 +83,7 @@ char *g_strconcat(const char *first, ...) {
return ret;
}
#ifdef _WIN32
#if defined _WIN32 || defined __CYGWIN__
int vasprintf(char **ret, const char *format, va_list ap) {
int len;
int retval;