2017-10-15 22:30:05 +08:00
|
|
|
/*
|
2021-03-08 17:22:21 +08:00
|
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
2017-10-15 22:30:05 +08:00
|
|
|
*
|
2018-09-14 22:37:43 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2017-10-15 22:30:05 +08:00
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2017-01-21 Bernard the first version
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef RTLIBC_H__
|
|
|
|
#define RTLIBC_H__
|
|
|
|
|
|
|
|
/* definitions for libc if toolchain has no these definitions */
|
|
|
|
#include "libc/libc_stat.h"
|
|
|
|
|
|
|
|
#include "libc/libc_fcntl.h"
|
|
|
|
#include "libc/libc_dirent.h"
|
|
|
|
#include "libc/libc_signal.h"
|
2017-10-31 09:52:49 +08:00
|
|
|
#include "libc/libc_fdset.h"
|
2017-10-15 22:30:05 +08:00
|
|
|
|
2021-04-21 00:56:36 +08:00
|
|
|
#ifndef RT_USING_LIBC
|
2021-06-13 17:36:42 +08:00
|
|
|
#if defined(__ARMCC_VERSION) || defined(__IAR_SYSTEMS_ICC__)
|
2021-04-21 00:56:36 +08:00
|
|
|
typedef signed long off_t;
|
|
|
|
typedef int mode_t;
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2017-11-30 23:56:52 +08:00
|
|
|
#if defined(__MINGW32__) || defined(_WIN32)
|
2017-10-20 13:26:47 +08:00
|
|
|
typedef signed long off_t;
|
|
|
|
typedef int mode_t;
|
|
|
|
#endif
|
|
|
|
|
2017-10-15 22:30:05 +08:00
|
|
|
#endif
|
|
|
|
|