mirror of
https://github.com/diegocr/libnix.git
synced 2026-09-14 04:30:33 +00:00
7 lines
72 B
C
7 lines
72 B
C
#include <unistd.h>
|
|
|
|
pid_t getppid(void)
|
|
{
|
|
return 1; /* init ;-) */
|
|
}
|