Imported from ../bash-2.05a.tar.gz.
[platform/upstream/bash.git] / CWRU / misc / pid.c
1 #include <stdio.h>
2
3 main()
4 {
5         fprintf(stderr, "%d\n", getpid());
6         exit(0);
7 }