From 13ece8977b7c7ddc97f906a6a374816f254c50f2 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Fri, 6 Dec 2002 23:38:01 +0000 Subject: Update. * include/wctype.h: Define iswalnum with libc_hidden_proto. * include/signal.h: Define raise with libc_hidden_proto. * sysdeps/unix/sysv/linux/fexecve.c (fexecve): Use __snprintf and __execve instead of snprintf and execve. --- sysdeps/unix/sysv/linux/fexecve.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sysdeps') diff --git a/sysdeps/unix/sysv/linux/fexecve.c b/sysdeps/unix/sysv/linux/fexecve.c index a90364eb49..50d2d779b8 100644 --- a/sysdeps/unix/sysv/linux/fexecve.c +++ b/sysdeps/unix/sysv/linux/fexecve.c @@ -40,10 +40,10 @@ fexecve (fd, argv, envp) /* We use the /proc filesystem to get the information. If it is not mounted we fail. */ char buf[sizeof "/proc/self/fd/" + sizeof (int) * 3]; - snprintf (buf, sizeof (buf), "/proc/self/fd/%d", fd); + __snprintf (buf, sizeof (buf), "/proc/self/fd/%d", fd); /* We do not need the return value. */ - execve (buf, argv, envp); + __execve (buf, argv, envp); int save = errno; -- cgit v1.2.3