ladybird/LibC/time.h

18 lines
242 B
C
Raw Normal View History

#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