diff options
Diffstat (limited to 'lib/auto/POSIX/perror.al')
-rw-r--r-- | lib/auto/POSIX/perror.al | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/auto/POSIX/perror.al b/lib/auto/POSIX/perror.al deleted file mode 100644 index 36ae11e4c7..0000000000 --- a/lib/auto/POSIX/perror.al +++ /dev/null @@ -1,10 +0,0 @@ -# NOTE: Derived from POSIX.pm. Changes made here will be lost. -package POSIX; - -sub perror { - unimpl "perror() is C-specific--print $! instead", caller; - unimpl "perror(xxx)", caller if @_ != 123; - perror($_[0]); -} - -1; |