summaryrefslogtreecommitdiff
path: root/include/string.h
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-10-18 23:38:13 +0000
committerEric Andersen <andersen@codepoet.org>2000-10-18 23:38:13 +0000
commit9b7d191055ade5069c6325fa857e007b4c658b14 (patch)
tree3546e12e3453e15508dbdfbec0a940e3e3de0647 /include/string.h
parenta6a89eb4477289063cb9ef1cc414b9e748f877f9 (diff)
More updates. Implement strsignal. Add pwd_grp tests
Diffstat (limited to 'include/string.h')
-rw-r--r--include/string.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/string.h b/include/string.h
index 2c334ba71..e276db7ee 100644
--- a/include/string.h
+++ b/include/string.h
@@ -95,6 +95,8 @@ extern size_t strcspn __P ((__const char *__s, __const char *__reject));
consists entirely of characters in ACCEPT. */
extern size_t strspn __P ((__const char *__s, __const char *__accept));
+/* Return a string describing the meaning of the signal number in SIG. */
+extern char *strsignal __P ((int __sig));
/* More BSD compatabilty */
#define bcmp memcmp