Add missing headers

This commit is contained in:
iabdalkader 2015-04-25 23:34:42 +03:00
parent 9b068dd992
commit ecdcac56d2
3 changed files with 5 additions and 1 deletions

View File

@ -11,6 +11,7 @@
#include "xalloc.h"
#include "imlib.h"
#include "mdefs.h"
#include <arm_math.h>
#define R8(p) \
rb_tbl[((p>>3)&0x1F)]

View File

@ -12,7 +12,8 @@
#include "imlib.h"
#include "array.h"
#include "xalloc.h"
#include "rng.h"
extern uint32_t rng_randint(uint32_t min, uint32_t max);
static cluster_t *cluster_alloc(int cx, int cy)
{

View File

@ -6,10 +6,12 @@
* LBPu28,2 Operator.
*
*/
#include "imlib.h"
#include "xalloc.h"
#include "ff.h"
#include "std.h"
#include <stdlib.h>
#define min(a,b) \
({ __typeof__ (a) _a = (a); \