add support for RcB2 build sys
[rofl0r-c-flod.git] / flashlib / Common.h
blob8d0cbb8fb83dc2f84366ad53c0b44eb532835e2c
1 #ifndef COMMON_H
2 #define COMMON_H
4 #include <math.h>
5 #include <stddef.h>
6 #include <stdbool.h>
8 #define null NULL
10 typedef float Number;
12 #include <stdio.h>
13 #define DEBUGP(format, ...) fprintf(stderr, format, __VA_ARGS__)
14 #define INT3 __asm__("int3")
16 #endif