ladybird/LibC/time.h
Andreas Kling e76312ab63 Lots of minor compat stuff while seeing if bash would build.
We're quite far from bash building, but we'll get there eventually!
2018-11-05 16:40:48 +01:00

18 lines
242 B
C

#pragma once
#include <sys/cdefs.h>
#include <sys/types.h>
__BEGIN_DECLS
typedef struct timezone {
int tz_minuteswest;
int tz_dsttime;
};
int gettimeofday(struct timeval*, struct timezone* tz);
time_t time(time_t*);
__END_DECLS