include sys/kd.h on non-Linux architectures correctly

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31058 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
siretart 2010-04-23 10:04:56 +00:00
parent 701bbdfea6
commit 8bd8aba37a
1 changed files with 2 additions and 2 deletions

View File

@ -35,9 +35,9 @@
#include <string.h>
#ifdef __linux__
#include <sys/kd.h>
#else
#include <linux/kd.h>
#else
#include <sys/kd.h>
#endif
#include "config.h"