blob: 14720651c4117f748964134b5a6e9e247a2f5b0e [file] [log] [blame]
#include <unistd.h>
#include "syscall.h"
#include "libc.h"
int pause(void)
{
int r;
CANCELPT_BEGIN;
r = syscall0(__NR_pause);
CANCELPT_END;
return r;
}