mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-07-07 05:06:37 +02:00
using unsigned char subscripts
This commit is contained in:
parent
b5bc2749d7
commit
6a6e5746c5
1 changed files with 2 additions and 2 deletions
|
@ -16,8 +16,8 @@ extern "C" {
|
||||||
|
|
||||||
#if defined(_WIN32) || defined(__MINGW32__)
|
#if defined(_WIN32) || defined(__MINGW32__)
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#define sexp_isalpha(x) ((isalpha)(x))
|
#define sexp_isalpha(x) ((isalpha)((unsigned char)(x)))
|
||||||
#define sexp_isxdigit(x) ((isxdigit)(x))
|
#define sexp_isxdigit(x) ((isxdigit)((unsigned char)(x)))
|
||||||
#else
|
#else
|
||||||
#if SEXP_USE_DL
|
#if SEXP_USE_DL
|
||||||
#include <dlfcn.h>
|
#include <dlfcn.h>
|
||||||
|
|
Loading…
Add table
Reference in a new issue