]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Use INTDEF for __chown.
authorUlrich Drepper <drepper@redhat.com>
Tue, 9 Apr 2002 20:20:23 +0000 (20:20 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 9 Apr 2002 20:20:23 +0000 (20:20 +0000)
sysdeps/unix/sysv/aix/chown.c

index 568c26ac776f6153ce948ee17b238cf7ae255479..037b14b276d6b31291c11cb34ab71fc475517b69 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+/* Copyright (C) 1999, 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
 
 #include <unistd.h>
 
+#undef __chown
+
 int
 __chown (const char *file, uid_t owner, gid_t group)
 {
   return chown (file, owner, group);
 }
+INTDEF(__chown)