diff options
author | Geoffrey Keating <geoffk@geoffk.org> | 2000-08-30 18:30:16 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@geoffk.org> | 2000-08-30 18:30:16 +0000 |
commit | 44e36af42bde0f212f7a1c10653d9f7b1a00bdb3 (patch) | |
tree | 4e082443714ad3a5327ea305afc948955739560c /newlib/libc/include/string.h | |
parent | 4f2aac14aaa7e3b629cabdd862959c411abff15d (diff) | |
download | cygnal-44e36af42bde0f212f7a1c10653d9f7b1a00bdb3.tar.gz cygnal-44e36af42bde0f212f7a1c10653d9f7b1a00bdb3.tar.bz2 cygnal-44e36af42bde0f212f7a1c10653d9f7b1a00bdb3.zip |
* libc/string/swab.c: Specify that it's defined in <unistd.h>.
* libc/include/string.h: Don't include <sys/types.h>,
as it causes really bad namespace pollution. Don't declare
swab(), it is properly declared in unistd.h.
Diffstat (limited to 'newlib/libc/include/string.h')
-rw-r--r-- | newlib/libc/include/string.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/newlib/libc/include/string.h b/newlib/libc/include/string.h index 7d5bd45af..e85dac33e 100644 --- a/newlib/libc/include/string.h +++ b/newlib/libc/include/string.h @@ -13,7 +13,6 @@ extern "C" { #include "_ansi.h" #include <sys/reent.h> -#include <sys/types.h> #define __need_size_t #include <stddef.h> @@ -72,7 +71,6 @@ const char *_EXFUN(strsignal, (int __signo)); #endif int _EXFUN(strtosigno, (const char *__name)); #endif -void _EXFUN(swab,(const void *, void *, ssize_t)); /* These function names are used on Windows and perhaps other systems. */ #ifndef strcmpi |