LibC: Remove duplicate declaration of clock_t and time_t

These are pulled from Kernel/API/POSIX/sys/types.h. Removing these
declarations makes sure we only have one place defining them.
This commit is contained in:
Andrew Kaster 2023-01-07 13:55:16 -07:00 committed by Andrew Kaster
parent 100fb38c3e
commit 0420736143

View file

@ -28,9 +28,6 @@ extern long altzone;
extern char* tzname[2];
extern int daylight;
typedef uint32_t clock_t;
typedef int64_t time_t;
struct tm* localtime(time_t const*);
struct tm* gmtime(time_t const*);
time_t mktime(struct tm*);