mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-20 06:09:18 +02:00
Patch from John Cowan fixing cygwin warnings.
This commit is contained in:
parent
a07f46d450
commit
097ce7bfe0
1 changed files with 5 additions and 5 deletions
|
@ -16,11 +16,11 @@ extern "C" {
|
|||
|
||||
#if defined(_WIN32) || defined(__MINGW32__)
|
||||
#include <windows.h>
|
||||
#define sexp_isalpha(x) ((isalpha)((int)(x)))
|
||||
#define sexp_isxdigit(x) ((isxdigit)((int)(x)))
|
||||
#define sexp_isdigit(x) ((isdigit)((int)(x)))
|
||||
#define sexp_tolower(x) ((tolower)((int)(x)))
|
||||
#define sexp_toupper(x) ((toupper)((int)(x)))
|
||||
#define sexp_isalpha(x) ((isalpha)((int)(unsigned int)(x)))
|
||||
#define sexp_isxdigit(x) ((isxdigit)((int)(unsigned int)(x)))
|
||||
#define sexp_isdigit(x) ((isdigit)((int)(unsigned int)(x)))
|
||||
#define sexp_tolower(x) ((tolower)((int)(unsigned int)(x)))
|
||||
#define sexp_toupper(x) ((toupper)((int)(unsigned int)(x)))
|
||||
#else
|
||||
#if SEXP_USE_DL
|
||||
#include <dlfcn.h>
|
||||
|
|
Loading…
Add table
Reference in a new issue