diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2000-03-09 22:25:01 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2000-03-09 22:25:01 +0000 |
commit | e9c949781598a0476a6cdb953e5f09442d5ca016 (patch) | |
tree | d9a821eaef7d88bf79ed0772a75281774a489465 /newlib/libc/include/string.h | |
parent | af1dc7ccea4e312010198981382bd1e33910eccb (diff) | |
download | cygnal-e9c949781598a0476a6cdb953e5f09442d5ca016.tar.gz cygnal-e9c949781598a0476a6cdb953e5f09442d5ca016.tar.bz2 cygnal-e9c949781598a0476a6cdb953e5f09442d5ca016.zip |
Thu Mar 9 17:20:41 2000 Jeff Johnston <jjohnstn@cygnus.com>
* libc/include/string.h: Changed last argument back to ssize_t
to make it compatible with XPG4 definition which is
defined in <unistd.h>. There is a conflict in the SVID 3
and XPG4 definitions and newlib will settle with XPG4.
* libc/string/swab.c: Ditto.
Diffstat (limited to 'newlib/libc/include/string.h')
-rw-r--r-- | newlib/libc/include/string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/include/string.h b/newlib/libc/include/string.h index 7ec2dcf34..0707aac16 100644 --- a/newlib/libc/include/string.h +++ b/newlib/libc/include/string.h @@ -69,7 +69,7 @@ char *_EXFUN(strupr,(char *)); char *_EXFUN(strsignal, (int __signo)); int _EXFUN(strtosigno, (const char *__name)); #endif -void _EXFUN(swab,(const void *, void *, size_t)); +void _EXFUN(swab,(const void *, void *, ssize_t)); /* These function names are used on Windows and perhaps other systems. */ #ifndef strcmpi |