about summary refs log tree commit diff
path: root/sysdeps/generic/glob.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-08-04 03:30:56 +0000
committerRoland McGrath <roland@gnu.org>2002-08-04 03:30:56 +0000
commitc41f555e0c91588469586cb7fef23907582b2595 (patch)
tree61451cb29fdd0cc6aae97b46d61191c4fae53569 /sysdeps/generic/glob.c
parent5517266d33193ca13de097fa2775661c3bc6dac0 (diff)
downloadglibc-c41f555e0c91588469586cb7fef23907582b2595.tar.gz
glibc-c41f555e0c91588469586cb7fef23907582b2595.tar.xz
glibc-c41f555e0c91588469586cb7fef23907582b2595.zip
* include/unistd.h: Use libc_hidden_proto for _exit, alarm, confstr,
	execl, execle, execlp, execvp, getpid, getsid.
	* sysdeps/generic/alarm.c: Add libc_hidden_def.
	* sysdeps/unix/alarm.c: Likewise.
	* posix/confstr.c: Likewise.
	* posix/execvp.c: Likewise.
	* posix/execlp.c: Likewise.
	* posix/execle.c: Likewise.
	* posix/execl.c: Likewise.
	* sysdeps/generic/getsid.c: Likewise.
	* sysdeps/mach/hurd/getsid.c: Likewise.
	* sysdeps/generic/getpid.c: Add libc_hidden_weak.
	* sysdeps/mach/hurd/getpid.c: Likewise.

	* include/stdlib.h: Use libc_hidden_proto for ecvt_r, fcvt_r,
	qecvt_r, qfcvt_r, lrand48_r.
	* misc/efgcvt_r.c: Add libc_hidden_def.

	* include/wordexp.h: Use libc_hidden_proto for wordfree.
	* sysdeps/generic/wordexp.c: Add libc_hidden_def.

	* include/langinfo.h: Use libc_hidden_proto for nl_langinfo.
	* locale/nl_langinfo.c: Add libc_hidden_def.

	* include/glob.h: Use libc_hidden_proto for glob, globfree, globfree64.
	* sysdeps/generic/glob.c: Add libc_hidden_def.
	* sysdeps/generic/glob64.c: Likewise.
	* sysdeps/wordsize-64/glob.c (globfree64): Add libc_hidden_weak.
Diffstat (limited to 'sysdeps/generic/glob.c')
-rw-r--r--sysdeps/generic/glob.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/sysdeps/generic/glob.c b/sysdeps/generic/glob.c
index 4a56f90f63..aca6e898a1 100644
--- a/sysdeps/generic/glob.c
+++ b/sysdeps/generic/glob.c
@@ -1064,6 +1064,9 @@ glob (pattern, flags, errfunc, pglob)
 
   return 0;
 }
+#ifdef _LIBC
+libc_hidden_def (glob)
+#endif
 
 
 #if !defined _LIBC || !defined GLOB_ONLY_P
@@ -1082,6 +1085,9 @@ globfree (pglob)
       free ((__ptr_t) pglob->gl_pathv);
     }
 }
+#ifdef _LIBC
+libc_hidden_def (globfree)
+#endif
 
 
 /* Do a collated comparison of A and B.  */