1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 12:17:35 +00:00

LibC: Run clang-format on everything.

This commit is contained in:
Andreas Kling 2019-06-07 11:49:03 +02:00
parent 892acfb10d
commit 46527b72d7
40 changed files with 181 additions and 234 deletions

View file

@ -1,8 +1,8 @@
#include <Kernel/Syscall.h>
#include <assert.h>
#include <errno.h>
#include <termios.h>
#include <sys/ioctl.h>
#include <Kernel/Syscall.h>
#include <termios.h>
extern "C" {
@ -27,8 +27,8 @@ int tcsetattr(int fd, int optional_actions, const struct termios* t)
int tcflow(int fd, int action)
{
(void) fd;
(void) action;
(void)fd;
(void)action;
ASSERT_NOT_REACHED();
}
@ -48,6 +48,4 @@ speed_t cfgetospeed(const struct termios* tp)
{
return tp->c_ospeed;
}
}