2001-02-08 Jeff Johnston <jjohnstn@redhat.com>
* libc/include/sys/stat.h: Must revert change for mknod for CYGWIN until winsup/cygwin/syscalls.cc changes mknod prototype.
This commit is contained in:
parent
5336d6de84
commit
34f31ff211
|
@ -1,3 +1,9 @@
|
||||||
|
2001-02-08 Jeff Johnston <jjohnstn@redhat.com>
|
||||||
|
|
||||||
|
* libc/include/sys/stat.h: Must revert change for mknod
|
||||||
|
for CYGWIN until winsup/cygwin/syscalls.cc changes mknod
|
||||||
|
prototype.
|
||||||
|
|
||||||
2001-02-08 Jeff Johnston <jjohnstn@redhat.com>
|
2001-02-08 Jeff Johnston <jjohnstn@redhat.com>
|
||||||
|
|
||||||
* libc/include/stdio.h: Revert putw prototype.
|
* libc/include/stdio.h: Revert putw prototype.
|
||||||
|
|
|
@ -125,10 +125,13 @@ int _EXFUN(stat,( const char *__path, struct stat *__sbuf ));
|
||||||
mode_t _EXFUN(umask,( mode_t __mask ));
|
mode_t _EXFUN(umask,( mode_t __mask ));
|
||||||
|
|
||||||
#if defined(__rtems__) || defined(__CYGWIN__)
|
#if defined(__rtems__) || defined(__CYGWIN__)
|
||||||
int _EXFUN(mknod,( const char *_path, mode_t _mode, dev_t dev ));
|
|
||||||
int _EXFUN(lstat,( const char *__path, struct stat *__buf ));
|
int _EXFUN(lstat,( const char *__path, struct stat *__buf ));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(__rtems__)
|
||||||
|
int _EXFUN(mknod,( const char *_path, mode_t _mode, dev_t dev ));
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Provide prototypes for most of the _<systemcall> names that are
|
/* Provide prototypes for most of the _<systemcall> names that are
|
||||||
provided in newlib for some compilers. */
|
provided in newlib for some compilers. */
|
||||||
int _EXFUN(_fstat,( int __fd, struct stat *__sbuf ));
|
int _EXFUN(_fstat,( int __fd, struct stat *__sbuf ));
|
||||||
|
|
Loading…
Reference in New Issue