1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 03:08:13 +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,18 +1,18 @@
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <stdarg.h>
#include <AK/AKString.h>
#include <AK/Vector.h>
#include <Kernel/Syscall.h>
#include <assert.h>
#include <errno.h>
#include <fcntl.h>
#include <grp.h>
#include <pwd.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <fcntl.h>
#include <Kernel/Syscall.h>
#include <AK/Vector.h>
#include <AK/AKString.h>
#include <unistd.h>
extern "C" {
@ -225,7 +225,7 @@ int stat(const char* path, struct stat* statbuf)
__RETURN_WITH_ERRNO(rc, rc, -1);
}
int fstat(int fd, struct stat *statbuf)
int fstat(int fd, struct stat* statbuf)
{
int rc = syscall(SC_fstat, fd, statbuf);
__RETURN_WITH_ERRNO(rc, rc, -1);
@ -378,15 +378,15 @@ int mknod(const char* pathname, mode_t mode, dev_t dev)
long fpathconf(int fd, int name)
{
(void) fd;
(void) name;
(void)fd;
(void)name;
ASSERT_NOT_REACHED();
}
long pathconf(const char* path, int name)
{
(void) path;
(void) name;
(void)path;
(void)name;
ASSERT_NOT_REACHED();
}
@ -451,7 +451,7 @@ char* getlogin()
return nullptr;
}
int create_thread(int(*entry)(void*), void* argument)
int create_thread(int (*entry)(void*), void* argument)
{
int rc = syscall(SC_create_thread, entry, argument);
__RETURN_WITH_ERRNO(rc, rc, -1);
@ -492,5 +492,4 @@ int fsync(int fd)
dbgprintf("FIXME: Implement fsync()\n");
return 0;
}
}