mgba/src/util/common.h

27 lines
599 B
C
Raw Normal View History

/* Copyright (c) 2013-2014 Jeffrey Pfau
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
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>
2015-03-23 09:47:10 +00:00
#include <strings.h>
2014-10-12 01:18:47 +00:00
#include <unistd.h>
2015-02-10 10:46:12 +00:00
2014-10-12 01:18:47 +00:00
#define UNUSED(V) (void)(V)
#endif