diff options
Diffstat (limited to 'lib/auto/POSIX/rename.al')
-rw-r--r-- | lib/auto/POSIX/rename.al | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/auto/POSIX/rename.al b/lib/auto/POSIX/rename.al new file mode 100644 index 0000000000..b657c5a39d --- /dev/null +++ b/lib/auto/POSIX/rename.al @@ -0,0 +1,9 @@ +# NOTE: Derived from POSIX.pm. Changes made here will be lost. +package POSIX; + +sub rename { + usage "rename(oldfilename, newfilename)", caller if @_ != 2; + rename($_[0], $_[1]); +} + +1; |