summaryrefslogtreecommitdiff
path: root/lib/auto/POSIX/getgroups.al
diff options
context:
space:
mode:
Diffstat (limited to 'lib/auto/POSIX/getgroups.al')
-rw-r--r--lib/auto/POSIX/getgroups.al10
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/auto/POSIX/getgroups.al b/lib/auto/POSIX/getgroups.al
deleted file mode 100644
index 34ae5e87cd..0000000000
--- a/lib/auto/POSIX/getgroups.al
+++ /dev/null
@@ -1,10 +0,0 @@
-# NOTE: Derived from POSIX.pm. Changes made here will be lost.
-package POSIX;
-
-sub getgroups {
- usage "getgroups()", caller if @_ != 0;
- local(%seen) = ();
- grep(!%seen{$_}++, split(' ', $) ));
-}
-
-1;