Files
bash/CWRU/misc/pid.c
T
2011-12-03 12:52:47 -05:00

8 lines
77 B
C

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