#include int posix_close(int fd, int flags) { return close(fd); } #ifdef TEST int main(void) { return 0; } #endif