Make string.h include strings.h.

This helps gcc build since it assumes that string.h provides various
functions that POSIX mandates is in strings.h. This is OK with me since that
strings.h is a nasty hack anyways. Also, glibc does this.
This commit is contained in:
Jonas 'Sortie' Termansen 2012-09-07 12:50:09 +02:00
parent 720b02b0fc
commit 550f9db140
1 changed files with 1 additions and 0 deletions

View File

@ -26,6 +26,7 @@
#define _STRING_H 1
#include <features.h>
#include <strings.h>
__BEGIN_DECLS