Newlib: update to version 3.0.0
This commit is contained in:
parent
a3d94f168b
commit
875aaabebe
50 changed files with 1536 additions and 1651 deletions
|
|
@ -136,29 +136,29 @@ struct timezone;
|
|||
#else
|
||||
/* Reentrant versions of system calls. */
|
||||
|
||||
extern int _close_r _PARAMS ((struct _reent *, int));
|
||||
extern int _execve_r _PARAMS ((struct _reent *, const char *, char *const *, char *const *));
|
||||
extern int _fcntl_r _PARAMS ((struct _reent *, int, int, int));
|
||||
extern int _fork_r _PARAMS ((struct _reent *));
|
||||
extern int _fstat_r _PARAMS ((struct _reent *, int, struct stat *));
|
||||
extern int _getpid_r _PARAMS ((struct _reent *));
|
||||
extern int _isatty_r _PARAMS ((struct _reent *, int));
|
||||
extern int _kill_r _PARAMS ((struct _reent *, int, int));
|
||||
extern int _link_r _PARAMS ((struct _reent *, const char *, const char *));
|
||||
extern _off_t _lseek_r _PARAMS ((struct _reent *, int, _off_t, int));
|
||||
extern int _mkdir_r _PARAMS ((struct _reent *, const char *, int));
|
||||
extern int _open_r _PARAMS ((struct _reent *, const char *, int, int));
|
||||
extern _ssize_t _read_r _PARAMS ((struct _reent *, int, void *, size_t));
|
||||
extern int _rename_r _PARAMS ((struct _reent *, const char *, const char *));
|
||||
extern void *_sbrk_r _PARAMS ((struct _reent *, ptrdiff_t));
|
||||
extern int _stat_r _PARAMS ((struct _reent *, const char *, struct stat *));
|
||||
extern _CLOCK_T_ _times_r _PARAMS ((struct _reent *, struct tms *));
|
||||
extern int _unlink_r _PARAMS ((struct _reent *, const char *));
|
||||
extern int _wait_r _PARAMS ((struct _reent *, int *));
|
||||
extern _ssize_t _write_r _PARAMS ((struct _reent *, int, const void *, size_t));
|
||||
extern int _close_r (struct _reent *, int);
|
||||
extern int _execve_r (struct _reent *, const char *, char *const *, char *const *);
|
||||
extern int _fcntl_r (struct _reent *, int, int, int);
|
||||
extern int _fork_r (struct _reent *);
|
||||
extern int _fstat_r (struct _reent *, int, struct stat *);
|
||||
extern int _getpid_r (struct _reent *);
|
||||
extern int _isatty_r (struct _reent *, int);
|
||||
extern int _kill_r (struct _reent *, int, int);
|
||||
extern int _link_r (struct _reent *, const char *, const char *);
|
||||
extern _off_t _lseek_r (struct _reent *, int, _off_t, int);
|
||||
extern int _mkdir_r (struct _reent *, const char *, int);
|
||||
extern int _open_r (struct _reent *, const char *, int, int);
|
||||
extern _ssize_t _read_r (struct _reent *, int, void *, size_t);
|
||||
extern int _rename_r (struct _reent *, const char *, const char *);
|
||||
extern void *_sbrk_r (struct _reent *, ptrdiff_t);
|
||||
extern int _stat_r (struct _reent *, const char *, struct stat *);
|
||||
extern _CLOCK_T_ _times_r (struct _reent *, struct tms *);
|
||||
extern int _unlink_r (struct _reent *, const char *);
|
||||
extern int _wait_r (struct _reent *, int *);
|
||||
extern _ssize_t _write_r (struct _reent *, int, const void *, size_t);
|
||||
|
||||
/* This one is not guaranteed to be available on all targets. */
|
||||
extern int _gettimeofday_r _PARAMS ((struct _reent *, struct timeval *__tp, void *__tzp));
|
||||
extern int _gettimeofday_r (struct _reent *, struct timeval *__tp, void *__tzp);
|
||||
|
||||
#ifdef __LARGE64_FILES
|
||||
|
||||
|
|
@ -168,10 +168,10 @@ extern int _gettimeofday_r _PARAMS ((struct _reent *, struct timeval *__tp, void
|
|||
#endif
|
||||
struct stat64;
|
||||
|
||||
extern _off64_t _lseek64_r _PARAMS ((struct _reent *, int, _off64_t, int));
|
||||
extern int _fstat64_r _PARAMS ((struct _reent *, int, struct stat64 *));
|
||||
extern int _open64_r _PARAMS ((struct _reent *, const char *, int, int));
|
||||
extern int _stat64_r _PARAMS ((struct _reent *, const char *, struct stat64 *));
|
||||
extern _off64_t _lseek64_r (struct _reent *, int, _off64_t, int);
|
||||
extern int _fstat64_r (struct _reent *, int, struct stat64 *);
|
||||
extern int _open64_r (struct _reent *, const char *, int, int);
|
||||
extern int _stat64_r (struct _reent *, const char *, struct stat64 *);
|
||||
|
||||
/* Don't pollute namespace if not building newlib. */
|
||||
#if defined (__CYGWIN__) && !defined (_COMPILING_NEWLIB)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue