diff options
author | Erik Faye-Lund <erik.faye-lund@collabora.com> | 2022-06-01 14:21:31 +0200 |
---|---|---|
committer | Marge Bot <emma+marge@anholt.net> | 2022-06-02 13:09:16 +0000 |
commit | 9633b426724e48f073f55ecfb6e0f41c584a0f16 (patch) | |
tree | 1f0a6ecf140b38365dfe8996e70a450e6d368dea /include | |
parent | beaa26bd753b5e63fa03b5a5fcf51859e006613d (diff) | |
download | mesa-9633b426724e48f073f55ecfb6e0f41c584a0f16.tar.gz mesa-9633b426724e48f073f55ecfb6e0f41c584a0f16.tar.bz2 mesa-9633b426724e48f073f55ecfb6e0f41c584a0f16.zip |
include: remove needless c99_compat.h includes
Reviewed-by: Jesse Natalie <jenatali@microsoft.com>
Reviewed-by: Alyssa Rosenzweig <alyssa@collabora.com>
Reviewed-by: Eric Engestrom <eric@engestrom.ch>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16812>
Diffstat (limited to 'include')
-rw-r--r-- | include/c11/threads.h | 2 | ||||
-rw-r--r-- | include/c99_math.h | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/include/c11/threads.h b/include/c11/threads.h index 790f52cb49f..81f4b9b7c09 100644 --- a/include/c11/threads.h +++ b/include/c11/threads.h @@ -35,8 +35,6 @@ #define TIME_UTC 1 #endif -#include "c99_compat.h" /* for `inline` */ - /*---------------------------- types ----------------------------*/ typedef void (*tss_dtor_t)(void*); typedef int (*thrd_start_t)(void*); diff --git a/include/c99_math.h b/include/c99_math.h index e906c26aa54..439a27fd61a 100644 --- a/include/c99_math.h +++ b/include/c99_math.h @@ -35,7 +35,6 @@ #define _C99_MATH_H_ #include <math.h> -#include "c99_compat.h" /* This is to ensure that we get M_PI, etc. definitions */ |