소스 검색

Include <sys/time.h> and <utime.h> when available

Sergey Poznyakoff 21 년 전
부모
커밋
55a96565b5
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      src/system.h

+ 5 - 0
src/system.h

@@ -476,10 +476,15 @@ char *getenv ();
 #endif
 
 #include <time.h>
+#include <sys/time.h>
 #ifndef time
 time_t time ();
 #endif
 
+#ifdef HAVE_UTIME_H
+# include <utime.h>
+#endif
+
 /* Library modules.  */
 
 #include <dirname.h>