summaryrefslogtreecommitdiff
path: root/src/gallium/include/pipe
diff options
context:
space:
mode:
authorErik Faye-Lund <erik.faye-lund@collabora.com>2022-06-08 10:31:32 +0200
committerMarge Bot <emma+marge@anholt.net>2022-06-14 15:08:38 +0000
commit3c82e23f9ac75db6f8ce1b47b833524956cb0e83 (patch)
tree14358a7b1768e531d9411f232d5aa0291ea21b25 /src/gallium/include/pipe
parentd791184b465b2624703b09ce9a6e41d98d860cd2 (diff)
gallium: reorganize includes
There's no reason to have standard includes in two different sections of the header, let's merge them. While we're at it, let's sort the includes as well. Reviewed-by: Jesse Natalie <jenatali@microsoft.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16908>
Diffstat (limited to 'src/gallium/include/pipe')
-rw-r--r--src/gallium/include/pipe/p_compiler.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/gallium/include/pipe/p_compiler.h b/src/gallium/include/pipe/p_compiler.h
index eefc2aee7f0..dfcfa196cfb 100644
--- a/src/gallium/include/pipe/p_compiler.h
+++ b/src/gallium/include/pipe/p_compiler.h
@@ -33,11 +33,13 @@
#include "util/macros.h"
+#include <limits.h>
+#include <stdarg.h>
+#include <stdbool.h>
+#include <stddef.h>
+#include <stdint.h>
#include <stdlib.h>
#include <string.h>
-#include <stddef.h>
-#include <stdarg.h>
-#include <limits.h>
#if defined(_WIN32) && !defined(__WIN32__)
@@ -54,10 +56,6 @@
#endif /* _MSC_VER */
-#include <stdint.h>
-#include <stdbool.h>
-
-
#ifdef __cplusplus
extern "C" {
#endif