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

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

1;