diff options
Diffstat (limited to 'include/compat/sys/stat.h')
-rw-r--r-- | include/compat/sys/stat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/compat/sys/stat.h b/include/compat/sys/stat.h index aa15c9a..57aa521 100644 --- a/include/compat/sys/stat.h +++ b/include/compat/sys/stat.h | |||
@@ -119,10 +119,10 @@ | |||
119 | #endif | 119 | #endif |
120 | 120 | ||
121 | #ifdef _WIN32 | 121 | #ifdef _WIN32 |
122 | int posix_fstat(int fd, struct stat *statbuf); | 122 | int libressl_fstat(int fd, struct stat *statbuf); |
123 | 123 | ||
124 | #ifndef NO_REDEF_POSIX_FUNCTIONS | 124 | #ifndef NO_REDEF_POSIX_FUNCTIONS |
125 | #define fstat(fd, statbuf) posix_fstat(fd, statbuf) | 125 | #define fstat(fd, statbuf) libressl_fstat(fd, statbuf) |
126 | #endif | 126 | #endif |
127 | #endif | 127 | #endif |
128 | 128 | ||