reprocess libc/ldso RELA relocations in stage 3 of dynamic linking
[musl] / src / ctype / isprint.c
1 #include <ctype.h>
2 #include "libc.h"
3 #undef isprint
4
5 int isprint(int c)
6 {
7         return (unsigned)c-0x20 < 0x5f;
8 }
9
10 int __isprint_l(int c, locale_t l)
11 {
12         return isprint(c);
13 }
14
15 weak_alias(__isprint_l, isprint_l);