summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libpthread/pthread_sys_close.c
blob: 84d5d5f36dffc90ff8c6e96f1b81022db57c3987 (plain)
1
2
3
4
5
6
7
8
9
10
#include <unistd.h>

#include <pthread.h>
#include "thread_internal.h"

int close(int fd)
{
  __TEST_CANCEL();
  return __libc_close(fd);
}