mirror of https://github.com/F-Stack/f-stack.git
16 lines
331 B
C
16 lines
331 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(c) 2019 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _UNISTD_H_
|
|
#define _UNISTD_H_
|
|
/**
|
|
* This file is added to support common code in eal_common_lcore.c
|
|
* as Microsoft libc does not contain unistd.h. This may be removed
|
|
* in future releases.
|
|
*/
|
|
|
|
#include <io.h>
|
|
|
|
#endif /* _UNISTD_H_ */
|