diff options
Diffstat (limited to 'eio.c')
-rw-r--r-- | eio.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -37,7 +37,7 @@ * either the BSD or the GPL. */ -#ifndef _WIN32 +#if !defined(_WIN32) && !defined(EMBED_LIBEIO) # include "config.h" #endif @@ -985,6 +985,7 @@ eio__pwrite (int fd, void *buf, size_t count, off_t offset) #endif #ifndef HAVE_UTIMES +#include <utime.h> # undef utimes # define utimes(path,times) eio__utimes (path, times) |