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

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

int pause()
{
  __TEST_CANCEL();
  return __libc_pause();
}