* 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.
This commit is contained in:
Roland McGrath 2002-08-04 03:30:56 +00:00
parent 5517266d33
commit c41f555e0c
23 changed files with 97 additions and 12 deletions

View File

@ -1,5 +1,34 @@
2002-08-03 Roland McGrath <roland@redhat.com>
* 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.
* locale/nl_langinfo.c: Use _NL_CURRENT_DATA.
* elf/Makefile (CFLAGS-vismod2.c): New variable.

View File

@ -1,6 +1,10 @@
#ifndef _GLOB_H
#include <posix/glob.h>
libc_hidden_proto (glob)
libc_hidden_proto (globfree)
libc_hidden_proto (globfree64)
/* Now define the internal interfaces. */
extern int __glob_pattern_p (__const char *__pattern, int __quote);
extern int __glob64 (__const char *__pattern, int __flags,

View File

@ -1 +1,7 @@
#ifndef _LANGINFO_H
#include <locale/langinfo.h>
libc_hidden_proto (nl_langinfo)
#endif

View File

@ -14,6 +14,11 @@ libc_hidden_proto (abort)
libc_hidden_proto (getenv)
libc_hidden_proto (bsearch)
libc_hidden_proto (qsort)
libc_hidden_proto (ecvt_r)
libc_hidden_proto (fcvt_r)
libc_hidden_proto (qecvt_r)
libc_hidden_proto (qfcvt_r)
libc_hidden_proto (lrand48_r)
libc_hidden_proto (__secure_getenv)
libc_hidden_proto (__strtof_internal)
libc_hidden_proto (__strtod_internal)

View File

@ -1,6 +1,17 @@
#ifndef _UNISTD_H
# include <posix/unistd.h>
libc_hidden_proto (_exit)
libc_hidden_proto (alarm)
libc_hidden_proto (confstr)
libc_hidden_proto (execl)
libc_hidden_proto (execle)
libc_hidden_proto (execlp)
libc_hidden_proto (execvp)
libc_hidden_proto (getpid)
libc_hidden_proto (getsid)
/* Now define the internal interfaces. */
extern int __access (__const char *__name, int __type);
extern int __euidaccess (__const char *__name, int __type);

View File

@ -1 +1,7 @@
#ifndef _WORDEXP_H
#include <posix/wordexp.h>
libc_hidden_proto (wordfree)
#endif

View File

@ -58,3 +58,6 @@ nl_langinfo (item)
/* Return the string for the specified item. */
return (char *) data->values[index].string;
}
#ifndef USE_IN_EXTENDED_LOCALE_MODEL
libc_hidden_def (nl_langinfo)
#endif

View File

@ -1,5 +1,5 @@
/* Compatibility functions for floating point formatting, reentrant versions.
Copyright (C) 1995,1996,1997,1998,1999,2000,2001 Free Software Foundation, Inc.
Copyright (C) 1995,96,97,98,99,2000,01,02 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@ -151,6 +151,7 @@ APPEND (FUNC_PREFIX, fcvt_r) (value, ndigit, decpt, sign, buf, len)
return 0;
}
libc_hidden_def (APPEND (FUNC_PREFIX, fcvt_r))
int
APPEND (FUNC_PREFIX, ecvt_r) (value, ndigit, decpt, sign, buf, len)
@ -212,3 +213,4 @@ APPEND (FUNC_PREFIX, ecvt_r) (value, ndigit, decpt, sign, buf, len)
*decpt += exponent;
return 0;
}
libc_hidden_def (APPEND (FUNC_PREFIX, ecvt_r))

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1991, 1996, 1997, 2000, 2001 Free Software Foundation, Inc.
/* Copyright (C) 1991,96,97,2000,01,02 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@ -157,3 +157,4 @@ confstr (name, buf, len)
}
return string_len;
}
libc_hidden_def (confstr)

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1991, 92, 94, 97, 98, 99 Free Software Foundation, Inc.
/* Copyright (C) 1991,92,94,97,98,99,2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@ -75,3 +75,4 @@ execl (const char *path, const char *arg, ...)
return __execve (path, (char *const *) argv, __environ);
}
libc_hidden_def (execl)

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1991, 1997, 1998, 1999 Free Software Foundation, Inc.
/* Copyright (C) 1991,97,98,99,2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@ -73,3 +73,4 @@ execle (const char *path, const char *arg, ...)
return __execve (path, (char *const *) argv, (char *const *) envp);
}
libc_hidden_def (execle)

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1991, 93, 96, 97, 98, 99 Free Software Foundation, Inc.
/* Copyright (C) 1991,93,96,97,98,99,2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@ -72,3 +72,4 @@ execlp (const char *file, const char *arg, ...)
return execvp (file, (char *const *) argv);
}
libc_hidden_def (execlp)

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1991, 92, 95, 96, 97, 98, 99 Free Software Foundation, Inc.
/* Copyright (C) 1991,92,95,96,97,98,99,2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@ -156,3 +156,4 @@ execvp (file, argv)
/* Return the error from the last attempt (probably ENOENT). */
return -1;
}
libc_hidden_def (execvp)

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1991, 1995, 1996, 1997 Free Software Foundation, Inc.
/* Copyright (C) 1991,95,96,97,2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@ -33,7 +33,7 @@ alarm (seconds)
__set_errno (ENOSYS);
return 0;
}
libc_hidden_def (alarm)
stub_warning (alarm)
#include <stub-tag.h>

View File

@ -30,4 +30,5 @@ libc_hidden_def (__getpid)
stub_warning (getpid)
weak_alias (__getpid, getpid)
libc_hidden_weak (getpid)
#include <stub-tag.h>

View File

@ -1,5 +1,5 @@
/* getsid -- Return session ID of a process. Stub version.
Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
Copyright (C) 1995,96,97,2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@ -27,5 +27,6 @@ getsid (pid_t pid)
__set_errno (ENOSYS);
return (pid_t) -1;
}
libc_hidden_def (getsid)
stub_warning (getsid)
#include <stub-tag.h>

View File

@ -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. */

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1998, 1999 Free Software Foundation, Inc.
/* Copyright (C) 1998,99,2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@ -47,6 +47,7 @@ void
globfree64 (glob64_t *pglob)
{
}
libc_hidden_def (globfree64);
stub_warning (glob64)
#include <stub-tag.h>

View File

@ -2216,6 +2216,7 @@ wordfree (wordexp_t *pwordexp)
pwordexp->we_wordv = NULL;
}
}
libc_hidden_def (wordfree)
/*
* wordexp()

View File

@ -29,3 +29,4 @@ __getpid ()
}
libc_hidden_def (__getpid)
weak_alias (__getpid, getpid)
libc_hidden_weak (getpid)

View File

@ -1,5 +1,5 @@
/* getsid -- Return session ID of a process. Hurd version.
Copyright (C) 1995, 1997 Free Software Foundation, Inc.
Copyright (C) 1995,97,2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@ -33,3 +33,4 @@ getsid (pid_t pid)
return (pid_t) __hurd_fail (err);
return sid;
}
libc_hidden_def (getsid)

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1991, 1992, 1994, 1997 Free Software Foundation, Inc.
/* Copyright (C) 1991,92,94,97,2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@ -45,3 +45,4 @@ alarm (seconds)
++retval;
return retval;
}
libc_hidden_def (alarm)

View File

@ -5,3 +5,4 @@
#undef globfree64
weak_alias (glob, glob64)
weak_alias (globfree, globfree64)
libc_hidden_weak (globfree64)