blob: 1d6016c08df4fbb5085f50692d5e988b4c7af041 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# NOTE: Derived from POSIX.pm. Changes made here will be lost.
package POSIX;
sub putchar {
unimpl "putchar() is C-specific--use print instead", caller;
unimpl "putchar(xxx)", caller if @_ != 123;
putchar($_[0]);
}
1;
|