if __NetBSD__ defined, don't prototype strsignal() -- string.h already

provides a prototype, and it's different from what was here!
(proto here was const char *..., proto in string.h was just char *...)
This commit is contained in:
cgd 1995-09-27 14:01:01 +00:00
parent 6c9bbdc678
commit 70075b5f87

View File

@ -50,7 +50,10 @@ extern "C" {
}
#endif /* not STDLIB_H_DECLARES_PUTENV */
#ifndef __NetBSD__
/* defined in <string.h> in NetBSD */
const char *strsignal(int);
#endif
const int SOELIM_INDEX = 0;
const int REFER_INDEX = SOELIM_INDEX + 1;