Commit 1279cf35 authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

libport: Use configure guards for include files that may not be present.

parent fc82d8c2
......@@ -24,8 +24,12 @@
#ifndef HAVE_FUTIMES
#include <sys/types.h>
#include <sys/time.h>
#include <utime.h>
#ifdef HAVE_SYS_TIME_H
# include <sys/time.h>
#endif
#ifdef HAVE_UTIME_H
# include <utime.h>
#endif
#include <stdio.h>
#include <errno.h>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment