diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-08-04 09:23:46 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-08-04 09:23:46 +0000 |
commit | a42044dc37dca8e6fcbfb196e8922b9cdf664446 (patch) | |
tree | dad6ea5d59d7adcb88202e23f9c37f865d106a44 | |
parent | 1d343348c1caf178c9bd98c3d79302a5c8688c6c (diff) | |
download | glibc-a42044dc37dca8e6fcbfb196e8922b9cdf664446.tar glibc-a42044dc37dca8e6fcbfb196e8922b9cdf664446.tar.gz glibc-a42044dc37dca8e6fcbfb196e8922b9cdf664446.tar.bz2 glibc-a42044dc37dca8e6fcbfb196e8922b9cdf664446.zip |
(__xmknod): Add libc_hidden_def.
-rw-r--r-- | sysdeps/unix/sysv/linux/alpha/xmknod.c | 3 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/mips/xmknod.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/alpha/xmknod.c b/sysdeps/unix/sysv/linux/alpha/xmknod.c index a659c1f5ce..d7e8d2a0a8 100644 --- a/sysdeps/unix/sysv/linux/alpha/xmknod.c +++ b/sysdeps/unix/sysv/linux/alpha/xmknod.c @@ -1,5 +1,5 @@ /* xmknod call using old-style Unix mknod system call. - Copyright (C) 1991, 1993, 1995, 1996, 1997 Free Software Foundation, Inc. + Copyright (C) 1991,1993,1995,1996,1997,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 @@ __xmknod (int vers, const char *path, mode_t mode, dev_t *dev) } weak_alias (__xmknod, _xmknod) +libc_hidden_def (__xmknod) diff --git a/sysdeps/unix/sysv/linux/mips/xmknod.c b/sysdeps/unix/sysv/linux/mips/xmknod.c index d2a02f512b..217c9c2111 100644 --- a/sysdeps/unix/sysv/linux/mips/xmknod.c +++ b/sysdeps/unix/sysv/linux/mips/xmknod.c @@ -1,5 +1,5 @@ /* xmknod call using old-style Unix mknod system call. - Copyright (C) 1991, 93, 95, 96, 97, 98, 00 Free Software Foundation, Inc. + Copyright (C) 1991,93,95,96,97,98,00,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 @@ -49,3 +49,4 @@ __xmknod (int vers, const char *path, mode_t mode, dev_t *dev) } weak_alias (__xmknod, _xmknod) +libc_hidden_def (__xmknod) |