merge from gcc

This commit is contained in:
DJ Delorie
2001-09-26 18:45:50 +00:00
parent 4e6667ac4f
commit 3942352316
53 changed files with 3241 additions and 350 deletions

View File

@@ -1,3 +1,14 @@
/*
@deftypefn Supplemental char* strdup (const char *@var{s})
Returns a pointer to a copy of @var{s} in memory obtained from
@code{malloc}, or NULL if insufficient memory was available.
@end deftypefn
*/
char *
strdup(s)
char *s;