diff options
author | kib <kib@FreeBSD.org> | 2008-12-08 21:04:24 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2008-12-08 21:04:24 +0000 |
commit | 2e6f1edb43215ac92a1504930980b99efb13ee7b (patch) | |
tree | d222119fdf25f6e509a03e165fe282bb307b8a27 /gnu | |
parent | 2491570a9d7a97a5c127953203f037ececfce486 (diff) | |
download | FreeBSD-src-2e6f1edb43215ac92a1504930980b99efb13ee7b.zip FreeBSD-src-2e6f1edb43215ac92a1504930980b99efb13ee7b.tar.gz |
Add strndup(3) prototype to string.h.
This change was erronously ommitted from the r185690, and attempt
to simply add the prototype to string.h has revealed that several
contributed programs defined local prototypes for strndup(), controlled
by autoconfed config.h. So, manually change #undef HAVE_STRNDUP to
#define HAVE_STRNDUP 1. Next import of the corresponding program would
regenerate config.h, overriding the changes in this commit.
No objections from: kan
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/cc/libiberty/config.h | 2 | ||||
-rw-r--r-- | gnu/usr.bin/sort/config.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/cc/libiberty/config.h b/gnu/usr.bin/cc/libiberty/config.h index 0fc8ed6..236e076 100644 --- a/gnu/usr.bin/cc/libiberty/config.h +++ b/gnu/usr.bin/cc/libiberty/config.h @@ -235,7 +235,7 @@ #define HAVE_STRNCASECMP 1 /* Define to 1 if you have the `strndup' function. */ -/* #undef HAVE_STRNDUP */ +#define HAVE_STRNDUP 1 /* Define to 1 if you have the `strrchr' function. */ #define HAVE_STRRCHR 1 diff --git a/gnu/usr.bin/sort/config.h b/gnu/usr.bin/sort/config.h index 44f944c..601b368 100644 --- a/gnu/usr.bin/sort/config.h +++ b/gnu/usr.bin/sort/config.h @@ -759,7 +759,7 @@ #define HAVE_STRNCASECMP 1 /* Define to 1 if you have the `strndup' function. */ -/* #undef HAVE_STRNDUP */ +#define HAVE_STRNDUP 1 /* Define to 1 if you have the `strpbrk' function. */ #define HAVE_STRPBRK 1 |