summaryrefslogtreecommitdiff
path: root/lib/auto/POSIX/fwrite.al
blob: 09d8e7db553e7d3151c79fc323286ded0bcd7f0c (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 fwrite {
    unimpl "fwrite() is C-specific--use print instead", caller;
    unimpl "fwrite(xxx)", caller if @_ != 123;
    fwrite($_[0]);
}

1;