• Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <wctype.h>
2 #include "libc.h"
3 
towupper_l(wint_t c,locale_t l)4 wint_t towupper_l(wint_t c, locale_t l)
5 {
6 	return towupper(c);
7 }
8 
9 weak_alias(towupper_l, __towupper_l);
10