1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:47:44 +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,9 +1,9 @@
#include <time.h>
#include <Kernel/Syscall.h>
#include <assert.h>
#include <errno.h>
#include <sys/time.h>
#include <sys/times.h>
#include <errno.h>
#include <assert.h>
#include <Kernel/Syscall.h>
#include <time.h>
extern "C" {
@ -91,7 +91,7 @@ struct tm* gmtime(const time_t* t)
return localtime(t);
}
char *asctime(const struct tm*)
char* asctime(const struct tm*)
{
ASSERT_NOT_REACHED();
}
@ -117,5 +117,4 @@ clock_t clock()
times(&tms);
return tms.tms_utime + tms.tms_stime;
}
}