mirror of
https://git.musl-libc.org/git/musl
synced 2025-02-15 09:43:57 +03:00
suppress isascii() macro for C++
analogous to commit a60457c84a4b59ab564d7f4abb660a70283ba98d.
This commit is contained in:
parent
b129cd8690
commit
e48e99c112
@ -64,7 +64,9 @@ int isascii(int);
|
||||
int toascii(int);
|
||||
#define _tolower(a) ((a)|0x20)
|
||||
#define _toupper(a) ((a)&0x5f)
|
||||
#ifndef __cplusplus
|
||||
#define isascii(a) (0 ? isascii(a) : (unsigned)(a) < 128)
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user