Use INTDEF for __chown.

This commit is contained in:
Ulrich Drepper 2002-04-09 20:20:23 +00:00
parent a4b6834c4f
commit db601cfcce

View 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
@ -18,8 +18,11 @@
#include <unistd.h>
#undef __chown
int
__chown (const char *file, uid_t owner, gid_t group)
{
return chown (file, owner, group);
}
INTDEF(__chown)