diff options
| author | Joel Klinghed <the_jk@yahoo.com> | 2013-01-11 00:30:48 +0100 |
|---|---|---|
| committer | Joel Klinghed <the_jk@yahoo.com> | 2013-01-11 00:30:48 +0100 |
| commit | 36885e794a758d84ab75a905385dca0980c5e902 (patch) | |
| tree | 5e894f79bd06ef6a6b440a5bc748b42901784d3a /src/common.h | |
Initial commit
Diffstat (limited to 'src/common.h')
| -rw-r--r-- | src/common.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/common.h b/src/common.h new file mode 100644 index 0000000..974e03f --- /dev/null +++ b/src/common.h @@ -0,0 +1,19 @@ +#ifndef COMMON_H +#define COMMON_H + +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + +#include <stdbool.h> +#include <stdlib.h> + +#ifdef DEBUG +# include <assert.h> +#else +# define assert(x) /* x */ +#endif + +#define API + +#endif /* COMMON_H */ |
