diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2001-02-12 18:17:17 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2001-02-12 18:17:17 +0000 |
commit | a34c461fbbc050265f89d50f0be42c36a4f265d1 (patch) | |
tree | 0cd417b01905dfee65df53d06d9dd72dbee11218 /newlib | |
parent | 343329bac2613889e3798daf8828deeae67fcc36 (diff) | |
download | newlib-a34c461fbbc050265f89d50f0be42c36a4f265d1.zip newlib-a34c461fbbc050265f89d50f0be42c36a4f265d1.tar.gz newlib-a34c461fbbc050265f89d50f0be42c36a4f265d1.tar.bz2 |
2001-02-12 Jeff Johnston <jjohnstn@redhat.com>
* libc/include/sys/stat.h: Add mknod for Cygwin now that
Cygwin definition has correct prototype.
Diffstat (limited to 'newlib')
-rw-r--r-- | newlib/ChangeLog | 5 | ||||
-rw-r--r-- | newlib/libc/include/sys/stat.h | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index ed17a09..7391adb 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,8 @@ +2001-02-12 Jeff Johnston <jjohnstn@redhat.com> + + * libc/include/sys/stat.h: Add mknod for Cygwin now that + Cygwin definition has correct prototype. + 2001-02-08 Jeff Johnston <jjohnstn@redhat.com> * libc/include/sys/stat.h: Must revert change for mknod diff --git a/newlib/libc/include/sys/stat.h b/newlib/libc/include/sys/stat.h index be80851..2ae1b56 100644 --- a/newlib/libc/include/sys/stat.h +++ b/newlib/libc/include/sys/stat.h @@ -126,10 +126,7 @@ mode_t _EXFUN(umask,( mode_t __mask )); #if defined(__rtems__) || defined(__CYGWIN__) int _EXFUN(lstat,( const char *__path, struct stat *__buf )); -#endif - -#if defined(__rtems__) -int _EXFUN(mknod,( const char *_path, mode_t _mode, dev_t dev )); +int _EXFUN(mknod,( const char *__path, mode_t __mode, dev_t __dev )); #endif /* Provide prototypes for most of the _<systemcall> names that are |