blob: 4b28ef41fec1bb45531a491284267a5032bca604 [file] [log] [blame]
#include <unistd.h>
#include "syscall.h"
int nice(int inc)
{
return syscall1(__NR_nice, inc);
}