Reorganize includes

This commit is contained in:
Drew DeVault 2016-09-01 08:18:37 -04:00
parent 729fdf7d91
commit 416417a54c
50 changed files with 146 additions and 154 deletions

View file

@ -3,17 +3,17 @@
#include <stdbool.h>
#include <strings.h>
#include <string.h>
#include "config.h"
#include "stringop.h"
#include "container.h"
#include "workspace.h"
#include "focus.h"
#include "border.h"
#include "layout.h"
#include "input_state.h"
#include "sway/config.h"
#include "sway/container.h"
#include "sway/workspace.h"
#include "sway/focus.h"
#include "sway/border.h"
#include "sway/layout.h"
#include "sway/input_state.h"
#include "sway/ipc-server.h"
#include "sway/output.h"
#include "log.h"
#include "ipc-server.h"
#include "output.h"
#include "stringop.h"
#define ASSERT_NONNULL(PTR) \
sway_assert (PTR, #PTR "must be non-null")