diff options
Diffstat (limited to 'lib/common.h')
-rw-r--r-- | lib/common.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/common.h b/lib/common.h new file mode 100644 index 0000000..2ffbc9b --- /dev/null +++ b/lib/common.h @@ -0,0 +1,15 @@ +#ifndef COMMON_H +#define COMMON_H + +#define _GNU_SOURCE + +#include <stdio.h> +#include <stdint.h> +#include <stdlib.h> +#include <unistd.h> +#include <string.h> +#include <errno.h> + +#define COMMON_CONST 1 + +#endif // COMMON_H |