diff options
Diffstat (limited to 'misc')
-rw-r--r-- | misc/getttyent.c | 3 | ||||
-rw-r--r-- | misc/hsearch_r.c | 1 | ||||
-rw-r--r-- | misc/lsearch.c | 3 |
3 files changed, 6 insertions, 1 deletions
diff --git a/misc/getttyent.c b/misc/getttyent.c index dfc57d5ce8..1bc82e6938 100644 --- a/misc/getttyent.c +++ b/misc/getttyent.c @@ -133,6 +133,7 @@ getttyent() *p = '\0'; return (&tty); } +libc_hidden_def (getttyent) #define QUOTED 1 @@ -198,6 +199,7 @@ setttyent() } return (0); } +libc_hidden_def (setttyent) int endttyent() @@ -211,3 +213,4 @@ endttyent() } return (1); } +libc_hidden_def (endttyent) diff --git a/misc/hsearch_r.c b/misc/hsearch_r.c index a7629a5da4..d7c604cc56 100644 --- a/misc/hsearch_r.c +++ b/misc/hsearch_r.c @@ -224,3 +224,4 @@ hsearch_r (item, action, retval, htab) *retval = NULL; return 0; } +libc_hidden_def (hsearch_r) diff --git a/misc/lsearch.c b/misc/lsearch.c index 3d104617ca..057ff396e1 100644 --- a/misc/lsearch.c +++ b/misc/lsearch.c @@ -1,5 +1,5 @@ /* Linear search functions. - Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc. + Copyright (C) 1996,97,98,2002 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996. @@ -56,3 +56,4 @@ lfind (const void *key, const void *base, size_t *nmemb, size_t size, return cnt < *nmemb ? (void *) result : NULL; } +libc_hidden_def (lfind) |