mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-23 22:07:58 +02:00
14 lines
162 B
C
14 lines
162 B
C
#include <stdio.h>
|
|
#include <sys/types.h>
|
|
|
|
int pid;
|
|
int pg1;
|
|
|
|
main()
|
|
{
|
|
pid = getpid();
|
|
pg1 = getpgrp(0);
|
|
|
|
printf("pid = %d, pgrp = %d\n", pid, pg1);
|
|
}
|