mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-21 14:49:18 +02:00
Merge pull request #398 from VermillionAzure/master
Arranged definitions to prevent double definition
This commit is contained in:
commit
938af37a2b
1 changed files with 2 additions and 2 deletions
|
@ -761,10 +761,10 @@
|
||||||
#define _CRT_SECURE_NO_WARNINGS 1
|
#define _CRT_SECURE_NO_WARNINGS 1
|
||||||
#define _CRT_NONSTDC_NO_DEPRECATE 1
|
#define _CRT_NONSTDC_NO_DEPRECATE 1
|
||||||
#pragma warning(disable:4146) /* unary minus operator to unsigned type */
|
#pragma warning(disable:4146) /* unary minus operator to unsigned type */
|
||||||
#define strcasecmp lstrcmpi
|
|
||||||
#define strncasecmp(s1, s2, n) lstrcmpi(s1, s2)
|
|
||||||
#ifdef __MINGW32__
|
#ifdef __MINGW32__
|
||||||
#include <shlwapi.h>
|
#include <shlwapi.h>
|
||||||
|
#define strcasecmp lstrcmpi
|
||||||
|
#define strncasecmp(s1, s2, n) lstrcmpi(s1, s2)
|
||||||
#define strcasestr StrStrI
|
#define strcasestr StrStrI
|
||||||
#define SHUT_RD 0
|
#define SHUT_RD 0
|
||||||
#define SHUT_WR 1
|
#define SHUT_WR 1
|
||||||
|
|
Loading…
Add table
Reference in a new issue