From b9c8e3de1b3f0c9b87b8bbb6bf9d26351e17c8c8 Mon Sep 17 00:00:00 2001 From: Oliver Tappe Date: Thu, 30 Oct 2014 00:17:37 +0100 Subject: [PATCH] string.h: include strings.h for compatibility. * Partly reverting hrev47655, as the moved declarations are expected by many ports to be accessable via string.h. Following standards is a good thing in general, but not if it causes more problems than it helps ... --- headers/posix/string.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/headers/posix/string.h b/headers/posix/string.h index 34d66bdf06..6f19108379 100644 --- a/headers/posix/string.h +++ b/headers/posix/string.h @@ -74,6 +74,10 @@ extern char *strupr(char *string); extern const char *strsignal(int signum); +/* for compatibility, pull in functions declared in strings.h */ +#include + + #ifdef __cplusplus } #endif