AIX implementation of close.

This commit is contained in:
Ulrich Drepper 2000-03-21 01:12:25 +00:00
parent 5460770e60
commit 36e2d40c30

View file

@ -0,0 +1,8 @@
/* This is a system call. We only have to provide the wrapper. */
#include <unistd.h>
int
__close (int fd)
{
return close (fd);
}