38 lines
819 B
C
38 lines
819 B
C
/*
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* 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_errno.h"
|
|
|
|
#include "libc/libc_fcntl.h"
|
|
#include "libc/libc_ioctl.h"
|
|
#include "libc/libc_dirent.h"
|
|
#include "libc/libc_signal.h"
|
|
#include "libc/libc_fdset.h"
|
|
#include "libc/libc_limits.h"
|
|
#include "libc/libc_stdio.h"
|
|
|
|
#if defined(__CC_ARM) || defined(__CLANG_ARM) || defined(__IAR_SYSTEMS_ICC__)
|
|
typedef signed long off_t;
|
|
typedef int mode_t;
|
|
#endif
|
|
|
|
#if defined(__MINGW32__) || defined(_WIN32)
|
|
typedef signed long off_t;
|
|
typedef int mode_t;
|
|
#endif
|
|
|
|
#endif
|
|
|