From: Ulrich Drepper Date: Tue, 21 Mar 2000 01:12:25 +0000 (+0000) Subject: AIX implementation of close. X-Git-Tag: glibc-2.16-ports-before-merge~2633 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=36e2d40c303de2f46b3ba5dbf4f68e48f0dbc72f;p=thirdparty%2Fglibc.git AIX implementation of close. --- diff --git a/sysdeps/unix/sysv/aix/close.c b/sysdeps/unix/sysv/aix/close.c new file mode 100644 index 00000000000..4d500c50af4 --- /dev/null +++ b/sysdeps/unix/sysv/aix/close.c @@ -0,0 +1,8 @@ +/* This is a system call. We only have to provide the wrapper. */ +#include + +int +__close (int fd) +{ + return close (fd); +}