summaryrefslogtreecommitdiff
path: root/lib/auto/POSIX/getpgrp.al
blob: 0364706e536d07175140f531b05559c4287370b9 (plain)
1
2
3
4
5
6
7
8
9
# NOTE:  Derived from POSIX.pm.  Changes made here will be lost.
package POSIX;

sub getpgrp {
    usage "getpgrp()", caller if @_ != 0;
    getpgrp($_[0]);
}

1;