diff options
author | emersion <contact@emersion.fr> | 2018-02-12 21:29:23 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-02-12 21:29:23 +0100 |
commit | c2e147401048aa53aebd52f1851b1da8c91043a3 (patch) | |
tree | 8ea1a2b6a0414fd7904824ffac330cd4e1e96ca2 /backend/headless/output.c | |
parent | 36ead80cd19b4c1773b894750ecf7fcec63f9b9b (diff) |
Reformat all #include directives
Diffstat (limited to 'backend/headless/output.c')
-rw-r--r-- | backend/headless/output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/headless/output.c b/backend/headless/output.c index 63f0b6b4..ba4a094e 100644 --- a/backend/headless/output.c +++ b/backend/headless/output.c @@ -1,11 +1,11 @@ -#include <stdlib.h> #include <EGL/egl.h> #include <EGL/eglext.h> #include <GLES2/gl2.h> +#include <stdlib.h> #include <wlr/interfaces/wlr_output.h> #include <wlr/util/log.h> -#include "util/signal.h" #include "backend/headless.h" +#include "util/signal.h" static EGLSurface egl_create_surface(struct wlr_egl *egl, unsigned int width, unsigned int height) { |