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>
This commit is contained in:
Erik Faye-Lund 2022-06-08 10:31:32 +02:00 committed by Marge Bot
parent d791184b46
commit 3c82e23f9a

View file

@ -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