about summary refs log tree commit diff
path: root/src/ctype/islower.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ctype/islower.c')
-rw-r--r--src/ctype/islower.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ctype/islower.c b/src/ctype/islower.c
index d72fb212..02640213 100644
--- a/src/ctype/islower.c
+++ b/src/ctype/islower.c
@@ -1,7 +1,15 @@
 #include <ctype.h>
+#include "libc.h"
 #undef islower
 
 int islower(int c)
 {
 	return (unsigned)c-'a' < 26;
 }
+
+int __islower_l(int c, locale_t l)
+{
+	return islower(c);
+}
+
+weak_alias(__islower_l, islower_l);