Fix rpmatch build problem
* libc/stdlib/rpmatch.c: Include sys/types.h to make GCC happy. Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
parent
bdc6169381
commit
e2802064b2
|
@ -1,3 +1,7 @@
|
||||||
|
2015-11-19 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* libc/stdlib/rpmatch.c: Include sys/types.h to make GCC happy.
|
||||||
|
|
||||||
2015-11-12 Jon Turney <jon.turney@dronecode.org.uk>
|
2015-11-12 Jon Turney <jon.turney@dronecode.org.uk>
|
||||||
|
|
||||||
* libc/stdio/sprintf.c: Simplify documentation markup.
|
* libc/stdio/sprintf.c: Simplify documentation markup.
|
||||||
|
|
|
@ -57,6 +57,7 @@ No supporting OS subroutines are required.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
|
||||||
#include <langinfo.h>
|
#include <langinfo.h>
|
||||||
#include <regex.h>
|
#include <regex.h>
|
||||||
|
|
Loading…
Reference in New Issue