dlltest_arm

This fixes the dlltest_arm on arm(32)
This commit is contained in:
herman ten brugge 2020-12-19 20:33:36 +01:00
parent 50b4f320dc
commit a87dee588b

8
tcc.h
View File

@ -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 == '\\')