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