aboutsummaryrefslogtreecommitdiffstats
path: root/CWRU/misc/pid.c
blob: 458fde435d5c61b19fc41c86fd35bcc91f7fb823 (plain)
1
2
3
4
5
6
7
#include <stdio.h>

main()
{
	fprintf(stderr, "%d\n", getpid());
	exit(0);
}