mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-10 09:02:44 +02:00
13 lines
107 B
C++
13 lines
107 B
C++
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
namespace RTC {
|
|
|
|
void initialize();
|
|
time_t now();
|
|
time_t bootTime();
|
|
|
|
}
|
|
|