mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
10 lines
143 B
C
10 lines
143 B
C
#pragma once
|
|
|
|
#ifdef SERENITY_KERNEL
|
|
#include <Kernel/ktime.h>
|
|
#else
|
|
#include <time.h>
|
|
#define ktime time
|
|
#define klocaltime localtime
|
|
#endif
|
|
|