memtest86plus/lib/unistd.h

24 lines
392 B
C
Raw Normal View History

2020-05-24 15:30:55 -05:00
// SPDX-License-Identifier: GPL-2.0
#ifndef UNISTD_H
#define UNISTD_H
/**
* \file
*
2020-05-24 15:30:55 -05:00
* Provides a subset of the functions normally provided by <unistd.h>.
*
*//*
* Copyright (C) 2020-2022 Martin Whitaker.
2020-05-24 15:30:55 -05:00
*/
/**
2020-05-24 15:30:55 -05:00
* Sleeps for at least usec microseconds.
*/
void usleep(unsigned int usec);
/**
2020-05-24 15:30:55 -05:00
* Sleeps for at least sec seconds.
*/
void sleep(unsigned int sec);
#endif // UNISTD_H