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

sub getlogin {
    usage "getlogin(xxx)", caller if @_ != 0;
    getlogin();
}

1;