mirror of
https://github.com/mirror/tinycc.git
synced 2026-08-22 11:23:27 +08:00
dlltest_arm
This fixes the dlltest_arm on arm(32)
This commit is contained in:
8
tcc.h
8
tcc.h
@@ -28,6 +28,10 @@
|
||||
#include <stdarg.h>
|
||||
#include <stdlib.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 <errno.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))))
|
||||
#endif
|
||||
|
||||
/* gnu headers use to #define __attribute__ to empty for non-gcc compilers */
|
||||
#ifdef __TINYC__
|
||||
# undef __attribute__
|
||||
#endif
|
||||
|
||||
#ifdef _WIN32
|
||||
# define IS_DIRSEP(c) (c == '/' || c == '\\')
|
||||
|
||||
Reference in New Issue
Block a user