fix incorrect include warnings emitted by musl

This commit is contained in:
rofl0r 2017-11-22 15:14:53 +00:00
parent afa153e187
commit 78f93ecb32
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@
#include <sys/mman.h>
#include <linux/fb.h>
#include <sys/ioctl.h>
#include <sys/fcntl.h>
#include <fcntl.h>
#include "defs.h"
#include "fb.h"

View File

@ -6,9 +6,9 @@
#include <sys/types.h>
#include <sys/time.h>
#include <linux/kd.h>
#include <sys/signal.h>
#include <signal.h>
#include <sys/ioctl.h>
#include <sys/fcntl.h>
#include <fcntl.h>
#include <sys/vt.h>
#include <termios.h>