ack/plat/linux386/libsys/close.c

15 lines
184 B
C
Raw Normal View History

2007-04-21 23:02:11 +00:00
/* $Source$
* $State$
* $Revision$
*/
#include <stdlib.h>
#include <errno.h>
#include <unistd.h>
#include "libsys.h"
int close(int fd)
{
return _syscall(__NR_close, fd, 0, 0);
}