ulibc: Add header needed when compiling against ulibc

This commit is contained in:
Per Øyvind Karlsen 2009-12-05 05:46:59 +00:00 committed by Ray Strode
parent b840b6f73c
commit 3aaee87bf9

View file

@ -25,6 +25,7 @@
#include <stdint.h>
#include <stdbool.h>
#include <unistd.h>
#include <sys/types.h>
#ifndef MIN
#define MIN(a,b) ((a) <= (b)? (a) : (b))