Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git] / newlib / libc / ctype / isdigit_l.c
blob1fb79e0001a03c3df652d978990fa62bf5eb28f6
1 #include <_ansi.h>
2 #include <ctype.h>
4 #undef isdigit_l
6 int
7 isdigit_l (int c, struct __locale_t *locale)
9 return __locale_ctype_ptr_l (locale)[c+1] & _N;