clang-format: Fix alignment

This commit is contained in:
Kenny Levinsen 2021-09-21 12:46:52 +02:00
parent db08fb921f
commit e2baadc230
4 changed files with 11 additions and 11 deletions

View file

@ -9,8 +9,8 @@
#include "drm.h"
// From libdrm
#define DRM_IOCTL_BASE 'd'
#define DRM_IO(nr) _IO(DRM_IOCTL_BASE, nr)
#define DRM_IOCTL_BASE 'd'
#define DRM_IO(nr) _IO(DRM_IOCTL_BASE, nr)
#define DRM_IOCTL_SET_MASTER DRM_IO(0x1e)
#define DRM_IOCTL_DROP_MASTER DRM_IO(0x1f)

View file

@ -13,14 +13,14 @@
#include <linux/vt.h>
#define K_ENABLE K_UNICODE
#define K_DISABLE K_OFF
#define FRSIG 0
#define FRSIG 0
#elif defined(__FreeBSD__)
#include <sys/consio.h>
#include <sys/kbio.h>
#include <termios.h>
#define K_ENABLE K_XLATE
#define K_DISABLE K_RAW
#define FRSIG SIGIO
#define FRSIG SIGIO
#else
#error Unsupported platform
#endif