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

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

pid_t waitpid(pid_t pid, int *status, int options)
{
  __TEST_CANCEL();
  return __libc_waitpid(pid,status,options);
}