Module: Mesa Branch: main Commit: 5dc30f93428c47c85c8f4cba1e739ed2d7436d29 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=5dc30f93428c47c85c8f4cba1e739ed2d7436d29
Author: Erik Faye-Lund <[email protected]> Date: Tue Jun 7 16:29:39 2022 +0200 util: sort includes Reviewed-by: Jesse Natalie <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16908> --- src/util/ralloc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util/ralloc.c b/src/util/ralloc.c index 705614478b6..5ffc91ca823 100644 --- a/src/util/ralloc.c +++ b/src/util/ralloc.c @@ -22,11 +22,11 @@ */ #include <assert.h> -#include <stdlib.h> #include <stdarg.h> +#include <stdint.h> #include <stdio.h> +#include <stdlib.h> #include <string.h> -#include <stdint.h> #include "util/macros.h" #include "util/u_math.h"
