diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-04-09 20:26:17 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-04-09 20:26:17 +0000 |
commit | e4bf0032b0526769893e6c33a7b4063f28ce9dbb (patch) | |
tree | eb161dbe987052320e83e97bdb8cea5ddf0428f6 /sysdeps/unix | |
parent | d6a57cb89405cc626f2bfe7252ff367ed16cb17e (diff) | |
download | glibc-e4bf0032b0526769893e6c33a7b4063f28ce9dbb.tar glibc-e4bf0032b0526769893e6c33a7b4063f28ce9dbb.tar.gz glibc-e4bf0032b0526769893e6c33a7b4063f28ce9dbb.tar.bz2 glibc-e4bf0032b0526769893e6c33a7b4063f28ce9dbb.zip |
Use INTUSE for __chown calls.
Diffstat (limited to 'sysdeps/unix')
-rw-r--r-- | sysdeps/unix/sysv/linux/m68k/chown.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/m68k/chown.c b/sysdeps/unix/sysv/linux/m68k/chown.c index 50e11c1aa9..f8f4b5c0af 100644 --- a/sysdeps/unix/sysv/linux/m68k/chown.c +++ b/sysdeps/unix/sysv/linux/m68k/chown.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998, 2000 Free Software Foundation, Inc. +/* Copyright (C) 1998, 2000, 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 @@ -71,4 +71,5 @@ __chown (const char *file, uid_t owner, gid_t group) return INLINE_SYSCALL (chown, 3, CHECK_STRING (file), owner, group); #endif } +INTDEF(__chown) weak_alias (__chown, chown) |