blob: 91c03753319b44efe756e1d3e7bfa78c3534498a [file] [log] [blame]
/*
* Copyright (c) 2018 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef __POSIX_UNISTD_H__
#define __POSIX_UNISTD_H__
#ifdef __cplusplus
extern "C" {
#endif
#include "sys/types.h"
unsigned sleep(unsigned int seconds);
int usleep(useconds_t useconds);
#endif
#ifdef __cplusplus
}
#endif /* __POSIX_UNISTD_H__ */