main: remove a couple of includes

This commit is contained in:
Daniel Eklöf 2019-10-27 19:28:23 +01:00
parent 3684547fd7
commit 664641104c
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

4
main.c
View file

@ -13,9 +13,7 @@
#include <sys/timerfd.h>
#include <sys/sysinfo.h>
#include <sys/prctl.h>
#include <sys/wait.h>
#include <sys/time.h>
#include <sys/epoll.h>
#include <wayland-client.h>
@ -33,12 +31,12 @@
#include "fdm.h"
#include "font.h"
#include "grid.h"
#include "render.h"
#include "shm.h"
#include "slave.h"
#include "terminal.h"
#include "tokenize.h"
#include "version.h"
#include "render.h"
#include "vt.h"
#define min(x, y) ((x) < (y) ? (x) : (y))