mirror of
https://github.com/mirror/tinycc.git
synced 2025-01-15 05:20:06 +08:00
dlltest_arm
This fixes the dlltest_arm on arm(32)
This commit is contained in:
parent
50b4f320dc
commit
a87dee588b
8
tcc.h
8
tcc.h
@ -28,6 +28,10 @@
|
|||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
/* gnu headers use to #define __attribute__ to empty for non-gcc compilers */
|
||||||
|
#ifdef __TINYC__
|
||||||
|
# undef __attribute__
|
||||||
|
#endif
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
@ -108,10 +112,6 @@ extern long double strtold (const char *__nptr, char **__endptr);
|
|||||||
# define PRINTF_LIKE(x,y) __attribute__ ((format (printf, (x), (y))))
|
# define PRINTF_LIKE(x,y) __attribute__ ((format (printf, (x), (y))))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* gnu headers use to #define __attribute__ to empty for non-gcc compilers */
|
|
||||||
#ifdef __TINYC__
|
|
||||||
# undef __attribute__
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
# define IS_DIRSEP(c) (c == '/' || c == '\\')
|
# define IS_DIRSEP(c) (c == '/' || c == '\\')
|
||||||
|
Loading…
Reference in New Issue
Block a user