X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fctype%2Ftoupper.c;h=bbf4e06e815c6e1bbd7bfce3f12e471d427d71ad;hb=f9f686b7721e2cc35e20fa5c6df6da2dc4ac3f50;hp=1799f0307789a3336b28d82e78203a0482eb02ea;hpb=0b44a0315b47dd8eced9f3b7f31580cf14bbfc01;p=oweals%2Fmusl.git diff --git a/src/ctype/toupper.c b/src/ctype/toupper.c index 1799f030..bbf4e06e 100644 --- a/src/ctype/toupper.c +++ b/src/ctype/toupper.c @@ -1,7 +1,15 @@ #include +#include "libc.h" int toupper(int c) { if (islower(c)) return c & 0x5f; return c; } + +int __toupper_l(int c, locale_t l) +{ + return toupper(c); +} + +weak_alias(__toupper_l, toupper_l);