blob: 39d0bfa1ecb70d3bbe74e2138544699e8e7b7181 [file] [log] [blame]
/**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the mingw-w64 runtime package.
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
*/
#include <ctype.h>
#undef isascii
int isascii (int);
int
isascii (int c)
{
return __isascii(c);
}