diff options
author | Rechi <Rechi@users.noreply.github.com> | 2019-07-09 17:36:00 +0200 |
---|---|---|
committer | Rechi <Rechi@users.noreply.github.com> | 2019-07-09 17:36:00 +0200 |
commit | d324e77adc7b31bc9ebd5b4e13513b7fcdcd4bd1 (patch) | |
tree | 222c4d20adeffa8bc3e7f5bb9b95b991b1c5b43c /xbmc-xrandr.c | |
parent | b8ff2ce07db91f04e34a30c4de9fc4d25d4c53b4 (diff) |
[format] fix include order
Diffstat (limited to 'xbmc-xrandr.c')
-rw-r--r-- | xbmc-xrandr.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/xbmc-xrandr.c b/xbmc-xrandr.c index a065ed0f27..88d484a8be 100644 --- a/xbmc-xrandr.c +++ b/xbmc-xrandr.c @@ -25,19 +25,20 @@ * and part of the server code for randr. */ +#include <math.h> +#include <stdarg.h> +#include <stdint.h> #include <stdio.h> +#include <stdlib.h> +#include <string.h> + +#include <X11/Xatom.h> #include <X11/Xlib.h> #include <X11/Xlibint.h> #include <X11/Xproto.h> -#include <X11/Xatom.h> #include <X11/extensions/Xrandr.h> -#include <X11/extensions/Xrender.h> /* we share subpixel information */ +#include <X11/extensions/Xrender.h> /* we share subpixel information */ #include <strings.h> -#include <string.h> -#include <stdlib.h> -#include <stdarg.h> -#include <stdint.h> -#include <math.h> #ifndef _X_NORETURN #if defined(__GNUC__) && ((__GNUC__ * 100 + __GNUC_MINOR__) >= 205) |