- removed some more useless stuff from headers.

This commit is contained in:
Christoph Oelckers 2021-05-03 19:16:26 +02:00
parent 0db8fc6163
commit 020a636c2f
2 changed files with 1 additions and 13 deletions

View file

@ -15,11 +15,8 @@
static_assert('\xff' == 255, "Char must be unsigned!");
#if !defined __cplusplus || (__cplusplus < 201103L && !defined _MSC_VER)
# error C++11 or greater is required.
#endif
#include "compat.h"
#include "printf.h"
#include "palette.h"
#include "binaryangle.h"

View file

@ -14,15 +14,6 @@
////////// Language and compiler feature polyfills //////////
# define EXTERNC
#if defined __GNUC__ || defined __clang__
# define ATTRIBUTE(attrlist) __attribute__(attrlist)
#else
# define ATTRIBUTE(attrlist)
#endif
# define fallthrough__ [[fallthrough]]
////////// Architecture detection //////////