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

sub sigpending {
    unimpl "sigpending(xxx)", caller if @_ != 123;
    sigpending($_[0]);
}

1;