i-bash/CWRU/misc/pid.c
2009-09-12 16:46:49 +00:00

7 lines
77 B
C

#include <stdio.h>
main()
{
fprintf(stderr, "%d\n", getpid());
exit(0);
}