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

sub getchar {
    usage "getchar()", caller if @_ != 0;
    getc(STDIN);
}

1;