summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/lib/getpgrp.c
blob: ee2ab02571274285e2ac11b9f55b9949e8b76204 (plain)
1
2
3
4
5
6
#include <unistd.h>

int getpgrp()
{
  return getpgid(0);
}