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