mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-04-20 13:30:46 +00:00
Follow CodingStyle some more.
This commit is contained in:
parent
b4c4263d35
commit
90896657ad
1 changed files with 8 additions and 4 deletions
|
@ -31,19 +31,23 @@
|
|||
#endif
|
||||
|
||||
#include <fcntl.h>
|
||||
|
||||
#ifdef HAVE_UNISTD_H
|
||||
#include <unistd.h>
|
||||
# include <unistd.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
# include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
# include <strings.h>
|
||||
#endif
|
||||
|
||||
#include <errno.h>
|
||||
|
||||
#ifdef HAVE_SYS_IOCTL_H
|
||||
#include <sys/ioctl.h>
|
||||
# include <sys/ioctl.h>
|
||||
#endif
|
||||
|
||||
#include <linux/cdrom.h>
|
||||
#include <time.h>
|
||||
|
||||
|
|
Loading…
Reference in a new issue