summaryrefslogtreecommitdiff
path: root/libc/misc
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2005-12-08 20:10:14 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2005-12-08 20:10:14 +0000
commitb7ca7d087dc370a7c0228b020739c8ede40ebb88 (patch)
treefb06d971ad84d55f7a1f64a8b58147e053c64022 /libc/misc
parent121d3f0fa26162682586580475aa96014fc47c53 (diff)
Convert the rest of users to hidden
Diffstat (limited to 'libc/misc')
-rw-r--r--libc/misc/fnmatch/fnmatch.c2
-rw-r--r--libc/misc/syslog/syslog.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/libc/misc/fnmatch/fnmatch.c b/libc/misc/fnmatch/fnmatch.c
index 44f1431c8..e0d9daa87 100644
--- a/libc/misc/fnmatch/fnmatch.c
+++ b/libc/misc/fnmatch/fnmatch.c
@@ -117,7 +117,7 @@ int attribute_hidden __fnmatch(const char *pattern, const char *string, int flag
c1 = FOLD(c1);
for (--p; *n != '\0'; ++n)
if ((c == '[' || FOLD(*n) == c1) &&
- fnmatch(p, n, flags & ~FNM_PERIOD) == 0)
+ __fnmatch(p, n, flags & ~FNM_PERIOD) == 0)
return 0;
return FNM_NOMATCH;
}
diff --git a/libc/misc/syslog/syslog.c b/libc/misc/syslog/syslog.c
index 016db0864..3d0e9fb7b 100644
--- a/libc/misc/syslog/syslog.c
+++ b/libc/misc/syslog/syslog.c
@@ -32,7 +32,7 @@
*/
#define ctime __ctime
-#define sigaction __sigaction_internal
+#define sigaction __sigaction
#define connect __connect
#define __FORCE_GLIBC