mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 17:52:26 -05:00
18 lines
262 B
C
18 lines
262 B
C
#pragma once
|
|
|
|
#include <sys/cdefs.h>
|
|
#include <sys/types.h>
|
|
|
|
__BEGIN_DECLS
|
|
|
|
struct timezone {
|
|
int tz_minuteswest;
|
|
int tz_dsttime;
|
|
};
|
|
|
|
int gettimeofday(struct timeval*, struct timezone* tz);
|
|
time_t time(time_t*);
|
|
char* ctime(const time_t*);
|
|
|
|
__END_DECLS
|
|
|