i-bash/CWRU/misc/pid.c

8 lines
77 B
C
Raw Normal View History

1996-08-26 18:22:31 +00:00
#include <stdio.h>
main()
{
fprintf(stderr, "%d\n", getpid());
exit(0);
}