mirror of https://github.com/bsnes-emu/bsnes.git
Moved the libc override macros to settings.h, and removed __VA_ARGS__
This commit is contained in:
parent
bd9d4c96be
commit
fb700978ac
11
aarch64.c
11
aarch64.c
|
@ -2,17 +2,6 @@
|
|||
#include "libco.h"
|
||||
#include "settings.h"
|
||||
|
||||
#if !defined(LIBCO_ASSERT)
|
||||
#include <assert.h>
|
||||
#define LIBCO_ASSERT(...) assert(__VA_ARGS__)
|
||||
#endif
|
||||
|
||||
#if !defined(LIBCO_MALLOC) || !defined(LIBCO_FREE)
|
||||
#include <stdlib.h>
|
||||
#define LIBCO_MALLOC(...) malloc(__VA_ARGS__)
|
||||
#define LIBCO_FREE(...) free(__VA_ARGS__)
|
||||
#endif
|
||||
|
||||
#include <stdint.h>
|
||||
#ifdef LIBCO_MPROTECT
|
||||
#include <unistd.h>
|
||||
|
|
11
amd64.c
11
amd64.c
|
@ -2,17 +2,6 @@
|
|||
#include "libco.h"
|
||||
#include "settings.h"
|
||||
|
||||
#if !defined(LIBCO_ASSERT)
|
||||
#include <assert.h>
|
||||
#define LIBCO_ASSERT(...) assert(__VA_ARGS__)
|
||||
#endif
|
||||
|
||||
#if !defined(LIBCO_MALLOC) || !defined(LIBCO_FREE)
|
||||
#include <stdlib.h>
|
||||
#define LIBCO_MALLOC(...) malloc(__VA_ARGS__)
|
||||
#define LIBCO_FREE(...) free(__VA_ARGS__)
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
|
11
arm.c
11
arm.c
|
@ -2,17 +2,6 @@
|
|||
#include "libco.h"
|
||||
#include "settings.h"
|
||||
|
||||
#if !defined(LIBCO_ASSERT)
|
||||
#include <assert.h>
|
||||
#define LIBCO_ASSERT(...) assert(__VA_ARGS__)
|
||||
#endif
|
||||
|
||||
#if !defined(LIBCO_MALLOC) || !defined(LIBCO_FREE)
|
||||
#include <stdlib.h>
|
||||
#define LIBCO_MALLOC(...) malloc(__VA_ARGS__)
|
||||
#define LIBCO_FREE(...) free(__VA_ARGS__)
|
||||
#endif
|
||||
|
||||
#ifdef LIBCO_MPROTECT
|
||||
#include <unistd.h>
|
||||
#include <sys/mman.h>
|
||||
|
|
6
ppc.c
6
ppc.c
|
@ -4,12 +4,6 @@
|
|||
#include "libco.h"
|
||||
#include "settings.h"
|
||||
|
||||
#if !defined(LIBCO_MALLOC) || !defined(LIBCO_FREE)
|
||||
#include <stdlib.h>
|
||||
#define LIBCO_MALLOC(...) malloc(__VA_ARGS__)
|
||||
#define LIBCO_FREE(...) free(__VA_ARGS__)
|
||||
#endif
|
||||
|
||||
#include <stdint.h>
|
||||
#include <string.h>
|
||||
|
||||
|
|
|
@ -6,12 +6,6 @@
|
|||
|
||||
#include <stdint.h>
|
||||
|
||||
#if !defined(LIBCO_MALLOC) || !defined(LIBCO_FREE)
|
||||
#include <stdlib.h>
|
||||
#define LIBCO_MALLOC(...) malloc(__VA_ARGS__)
|
||||
#define LIBCO_FREE(...) free(__VA_ARGS__)
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
|
12
settings.h
12
settings.h
|
@ -26,6 +26,17 @@
|
|||
#define alignas(bytes)
|
||||
#endif
|
||||
|
||||
#if !defined(LIBCO_ASSERT)
|
||||
#include <assert.h>
|
||||
#define LIBCO_ASSERT assert
|
||||
#endif
|
||||
|
||||
#if !defined(LIBCO_MALLOC) || !defined(LIBCO_FREE)
|
||||
#include <stdlib.h>
|
||||
#define LIBCO_MALLOC malloc
|
||||
#define LIBCO_FREE free
|
||||
#endif
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
#define section(name) __declspec(allocate("." #name))
|
||||
#elif defined(__APPLE__)
|
||||
|
@ -34,5 +45,6 @@
|
|||
#define section(name) __attribute__((section("." #name "#")))
|
||||
#endif
|
||||
|
||||
|
||||
/* if defined(LIBCO_C) */
|
||||
#endif
|
||||
|
|
11
x86.c
11
x86.c
|
@ -2,17 +2,6 @@
|
|||
#include "libco.h"
|
||||
#include "settings.h"
|
||||
|
||||
#if !defined(LIBCO_ASSERT)
|
||||
#include <assert.h>
|
||||
#define LIBCO_ASSERT(...) assert(__VA_ARGS__)
|
||||
#endif
|
||||
|
||||
#if !defined(LIBCO_MALLOC) || !defined(LIBCO_FREE)
|
||||
#include <stdlib.h>
|
||||
#define LIBCO_MALLOC(...) malloc(__VA_ARGS__)
|
||||
#define LIBCO_FREE(...) free(__VA_ARGS__)
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue