diff options
author | peter <peter@FreeBSD.org> | 1996-10-03 21:50:28 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1996-10-03 21:50:28 +0000 |
commit | f5448c43dbd88a838d7f3c27e4ab731b07b629a8 (patch) | |
tree | 3249e9189f52aa78cfffe2a064b7fc1397c7d9f3 /contrib/libg++/libstdc++ | |
parent | bf282695182b466b321ce6d63656b6de7c13a8db (diff) | |
download | FreeBSD-src-f5448c43dbd88a838d7f3c27e4ab731b07b629a8.zip FreeBSD-src-f5448c43dbd88a838d7f3c27e4ab731b07b629a8.tar.gz |
The one and only change that I had to make to get all the tests to fly.
#include_next <string.h> wasfailing since the /usr/include directory is
first on FreeBSD, and since it was already past it, it failed some of
the tests.
Diffstat (limited to 'contrib/libg++/libstdc++')
-rw-r--r-- | contrib/libg++/libstdc++/std/cstring.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libg++/libstdc++/std/cstring.h b/contrib/libg++/libstdc++/std/cstring.h index 6d493e7..f0e914b 100644 --- a/contrib/libg++/libstdc++/std/cstring.h +++ b/contrib/libg++/libstdc++/std/cstring.h @@ -15,7 +15,7 @@ #define memchr __hide_memchr #endif // 0 -#include_next <string.h> +#include <string.h> #if 0 // Let's not bother with this just yet. #undef strchr |