mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 17:52:26 -05:00
15 lines
210 B
C
15 lines
210 B
C
|
#pragma once
|
||
|
|
||
|
#include <AK/Types.h>
|
||
|
|
||
|
#ifdef KERNEL
|
||
|
# include <Kernel/UnixTypes.h>
|
||
|
#else
|
||
|
# include <sys/time.h>
|
||
|
#endif
|
||
|
|
||
|
struct KernelInfoPage {
|
||
|
volatile u32 serial;
|
||
|
volatile struct timeval now;
|
||
|
};
|