Merge pull request #180 from eugmes/remove-macro

Remove definition of _GCC_VERSION_AT_LEAST
This commit is contained in:
Tim Rühsen 2022-02-18 19:39:29 +01:00 committed by GitHub
commit 664f3dc852
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 6 deletions

View File

@ -7,12 +7,6 @@
#include <stddef.h>
#if defined(__GNUC__) && defined(__GNUC_MINOR__)
# define _GCC_VERSION_AT_LEAST(major, minor) ((__GNUC__ > (major)) || (__GNUC__ == (major) && __GNUC_MINOR__ >= (minor)))
#else
# define _GCC_VERSION_AT_LEAST(major, minor) 0
#endif
#define CHECK_LT(a, b) if ((a) >= b) return 0
static const char multibyte_length_table[16] = {