diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-08-03 23:32:09 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-08-03 23:32:09 +0000 |
commit | 5b9f1450817f1fdaef605222e9a9b41f2cdc1798 (patch) | |
tree | 6893fd60e2eed32cb7830c4135248437ae6daa9e | |
parent | eb48f491b15ad01be840db3f35b5fe33ca2b8fe2 (diff) | |
download | glibc-5b9f1450817f1fdaef605222e9a9b41f2cdc1798.tar glibc-5b9f1450817f1fdaef605222e9a9b41f2cdc1798.tar.gz glibc-5b9f1450817f1fdaef605222e9a9b41f2cdc1798.tar.bz2 glibc-5b9f1450817f1fdaef605222e9a9b41f2cdc1798.zip |
(_IO_default_showmanyc): Change return type to size_t.
-rw-r--r-- | libio/genops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libio/genops.c b/libio/genops.c index 82c1c444b8..381c45fa5d 100644 --- a/libio/genops.c +++ b/libio/genops.c @@ -1021,7 +1021,7 @@ _IO_default_write (fp, data, n) return 0; } -int +size_t _IO_default_showmanyc (fp) _IO_FILE *fp; { |