diff options
author | Simon Glass <sjg@chromium.org> | 2020-02-03 07:36:00 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2020-02-05 19:33:46 -0700 |
commit | 1ea1c7d80f9dd7a4827cddf25fba71d0034510e4 (patch) | |
tree | 40c925bf3ac2a36d66c31997698ad51647f8ab61 /lib/string.c | |
parent | 1f6510c4cf92b6056c333c9e0316c5bdbe061f1a (diff) |
string: Allow arch override of strndup() also
At present architectures can override strdup() but not strndup(). Use
the same option for both.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'lib/string.c')
-rw-r--r-- | lib/string.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/string.c b/lib/string.c index 9b779ddc3b..ae7835f600 100644 --- a/lib/string.c +++ b/lib/string.c @@ -324,7 +324,6 @@ char * strdup(const char *s) strcpy (new, s); return new; } -#endif char * strndup(const char *s, size_t n) { @@ -348,6 +347,7 @@ char * strndup(const char *s, size_t n) return new; } +#endif #ifndef __HAVE_ARCH_STRSPN /** |