diff options
author | Darren Tucker <dtucker@dtucker.net> | 2019-07-06 12:54:43 +1000 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2019-07-06 12:54:43 +1000 |
commit | 2753521e899f30d1d58b5da0b4e68fde6fcf341e (patch) | |
tree | 2eb95ff3f3f0f80cde38a1f1d08a7154b19d33b6 /openbsd-compat | |
parent | 01a1e21cd55d99293c8ff8ed7c590f2ee440da43 (diff) |
Add prototype for compat strndup.(bz#3032).
Diffstat (limited to 'openbsd-compat')
-rw-r--r-- | openbsd-compat/openbsd-compat.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/openbsd-compat/openbsd-compat.h b/openbsd-compat/openbsd-compat.h index 865aaee53..957213577 100644 --- a/openbsd-compat/openbsd-compat.h +++ b/openbsd-compat/openbsd-compat.h | |||
@@ -109,6 +109,10 @@ size_t strlcat(char *dst, const char *src, size_t siz); | |||
109 | char *strcasestr(const char *, const char *); | 109 | char *strcasestr(const char *, const char *); |
110 | #endif | 110 | #endif |
111 | 111 | ||
112 | #ifndef HAVE_STRNDUP | ||
113 | char *strndup(const char *s, size_t n); | ||
114 | #endif | ||
115 | |||
112 | #ifndef HAVE_SETENV | 116 | #ifndef HAVE_SETENV |
113 | int setenv(register const char *name, register const char *value, int rewrite); | 117 | int setenv(register const char *name, register const char *value, int rewrite); |
114 | #endif | 118 | #endif |