mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-29 22:11:18 +00:00
AIX implementation of close.
This commit is contained in:
parent
5460770e60
commit
36e2d40c30
8
sysdeps/unix/sysv/aix/close.c
Normal file
8
sysdeps/unix/sysv/aix/close.c
Normal 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);
|
||||
}
|
Loading…
Reference in New Issue
Block a user