mgba/src/util/common.h

21 lines
330 B
C
Raw Normal View History

2014-10-12 01:18:47 +00:00
#ifndef COMMON_H
#define COMMON_H
#include <ctype.h>
#include <fcntl.h>
2014-11-22 08:33:41 +00:00
#include <inttypes.h>
2014-10-12 01:18:47 +00:00
#include <limits.h>
#include <math.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#define UNUSED(V) (void)(V)
#endif