summaryrefslogtreecommitdiff
path: root/src/unistd/setpgrp.c
blob: c36d78b4c091123c9e376204e560aa6857f438a8 (plain)
1
2
3
4
5
6
7
8
9
10
#include <unistd.h>

pid_t setpgrp(void)
{
	return 0;
}

/*
XOPEN(400)
*/