aboutsummaryrefslogtreecommitdiff
path: root/sys/src/close.c
blob: b9da3ab5152e97913b6334e52f1cb2eee1546ab4 (plain)
1
2
3
4
5
6
7
8
#include "internal.h"

int
sys·close(int fd)
{
    intptr ret = syscall(·Close, fd);
    return error(ret);
}