1
0
Fork 0
mirror of https://gitlab.com/sortix/sortix.git synced 2023-02-13 20:55:38 -05:00

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

View file

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