From fff92ff309075ed599a07a2e9378a0ed587ce073 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Wed, 10 Apr 2013 00:13:54 +0200 Subject: [PATCH] stime: Remove #ifdef HAVE_*_H for headers provided by Gnulib. * libguile/stime.c: Remove #ifdef HAVE_SYS_TIMES_H, HAVE_SYS_TYPES_H, and HAVE_STRING_H since those headers are always provided by Gnulib when the corresponding macro is undefined. Fixes a regression on MinGW introduced by commit 40e2a31. --- libguile/stime.c | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/libguile/stime.c b/libguile/stime.c index 7c0ed24fe..78539d9cd 100644 --- a/libguile/stime.c +++ b/libguile/stime.c @@ -68,17 +68,9 @@ # include #endif -#ifdef HAVE_SYS_TYPES_H -# include -#endif - -#ifdef HAVE_STRING_H +#include #include -#endif - -#ifdef HAVE_SYS_TIMES_H -# include -#endif +#include #ifdef HAVE_SYS_TIMEB_H # include