diff options
| author | Eric Andersen <andersen@codepoet.org> | 2001-10-11 08:36:33 +0000 |
|---|---|---|
| committer | Eric Andersen <andersen@codepoet.org> | 2001-10-11 08:36:33 +0000 |
| commit | bef22c1887f4b984969e2e2b5082bd42a16d661a (patch) | |
| tree | 27cc61bfeff53df874be62939706ed69c9f53cf2 /include | |
| parent | 5c12c8eecd5f2e06c200651e90befe85efcf166f (diff) | |
Add strndup, written by Stefan Soucek <ssoucek@coactive.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/string.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/string.h b/include/string.h index 3c03c7cee..13bdca993 100644 --- a/include/string.h +++ b/include/string.h @@ -125,8 +125,7 @@ extern char *strdup (__const char *__s) __THROW __attribute_malloc__; /* Return a malloc'd copy of at most N bytes of STRING. The resultant string is terminated even if no null terminator appears before STRING[N]. */ -#if 0 -//#if defined __USE_GNU +#if defined __USE_GNU extern char *strndup (__const char *__string, size_t __n) __THROW __attribute_malloc__; #endif |
