File size: 534 Bytes
78d2150 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | /* This file is in the public domain.
Source code of the C program. */
/* Every source file that uses Gnulib needs this. */
#include <config.h>
/* Get printf() declaration. */
#include <stdio.h>
/* Get getpid() declaration. */
#include <unistd.h>
/* Include Gnulib header files. */
#include "get_ppid_of.h"
int
main ()
{
printf ("%s\n", "Hello, world!");
printf ("This program is running as process number %d.\n", getpid ());
printf ("The parent process number is %d.\n", get_ppid_of (getpid ()));
return 0;
}
|