summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-01-06 19:54:52 +0000
committerEric Andersen <andersen@codepoet.org>2002-01-06 19:54:52 +0000
commit8a3b89cb2489048f1f42cd8db81e036c0c1ef2a8 (patch)
tree4b4dc6496b3e75026530dbc3d8e51d66552d460c /include
parent1a420b1fcb6a570fbe9fdad93f0084dd1503422f (diff)
Fix stpcpy function declaration
Diffstat (limited to 'include')
-rw-r--r--include/string.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/string.h b/include/string.h
index 761a59587..e0f7e3bcb 100644
--- a/include/string.h
+++ b/include/string.h
@@ -311,13 +311,11 @@ extern int strverscmp (__const char *__s1, __const char *__s2)
/* Return a string describing the meaning of the signal number in SIG. */
extern char *strsignal (int __sig) __THROW;
-#if 0
/* Copy SRC to DEST, returning the address of the terminating '\0' in DEST. */
extern char *__stpcpy (char *__restrict __dest, __const char *__restrict __src)
__THROW;
extern char *stpcpy (char *__restrict __dest, __const char *__restrict __src)
__THROW;
-#endif
/* Copy no more than N characters of SRC to DEST, returning the address of
the last character written into DEST. */