8 lines
95 B
C
8 lines
95 B
C
|
#include <stdio.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
printf("%d: p4 running\n", getpid());
|
||
|
}
|