mirror of
https://github.com/memtest86plus/memtest86plus.git
synced 2024-11-23 08:26:23 -06:00
21 lines
347 B
C
21 lines
347 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef _TIMERS_H_
|
|
#define _TIMERS_H_
|
|
/**
|
|
* \file
|
|
*
|
|
* Provides support for various timers sources
|
|
*
|
|
*//*
|
|
* Copyright (C) 2020-2022 Martin Whitaker.
|
|
* Copyright (C) 2004-2022 Sam Demeulemeester
|
|
*/
|
|
|
|
|
|
/**
|
|
* Initialize timers (to correct TSC frequency)
|
|
*/
|
|
void timers_init(void);
|
|
|
|
#endif /* _TIMERS_H_ */
|