diff options
author | Leon Timmermans <fawaka@gmail.com> | 2013-08-28 15:06:29 +0200 |
---|---|---|
committer | Leon Timmermans <fawaka@gmail.com> | 2013-09-07 10:01:50 +0200 |
commit | b66f3475d343bb78e55b4ba343433044f5966b6b (patch) | |
tree | 517f65e6379259676134dd543ebdca9e8a08df38 /embed.fnc | |
parent | df8c7dee25da69fc88678b8949166e08fb686037 (diff) | |
download | perl-b66f3475d343bb78e55b4ba343433044f5966b6b.tar.gz |
Fix PerlIO_get_cnt and friends
These functions worked with ints instead of SSize_t,
Diffstat (limited to 'embed.fnc')
-rw-r--r-- | embed.fnc | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -2343,9 +2343,9 @@ Ap |int |PerlIO_eof |NULLOK PerlIO *f Ap |int |PerlIO_error |NULLOK PerlIO *f Ap |int |PerlIO_flush |NULLOK PerlIO *f Ap |void |PerlIO_clearerr |NULLOK PerlIO *f -Ap |void |PerlIO_set_cnt |NULLOK PerlIO *f|int cnt +Ap |void |PerlIO_set_cnt |NULLOK PerlIO *f|SSize_t cnt Ap |void |PerlIO_set_ptrcnt |NULLOK PerlIO *f|NULLOK STDCHAR *ptr \ - |int cnt + |SSize_t cnt Ap |void |PerlIO_setlinebuf |NULLOK PerlIO *f Ap |SSize_t|PerlIO_read |NULLOK PerlIO *f|NN void *vbuf \ |Size_t count @@ -2358,8 +2358,8 @@ Ap |int |PerlIO_seek |NULLOK PerlIO *f|Off_t offset|int whence Ap |STDCHAR *|PerlIO_get_base |NULLOK PerlIO *f Ap |STDCHAR *|PerlIO_get_ptr |NULLOK PerlIO *f -ApR |int |PerlIO_get_bufsiz |NULLOK PerlIO *f -ApR |int |PerlIO_get_cnt |NULLOK PerlIO *f +ApR |SSize_t |PerlIO_get_bufsiz |NULLOK PerlIO *f +ApR |SSize_t |PerlIO_get_cnt |NULLOK PerlIO *f ApR |PerlIO *|PerlIO_stdin ApR |PerlIO *|PerlIO_stdout |