1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
From: Robert Luberda <robert@debian.org>
Date: Sat, 23 Jan 2016 10:52:27 +0100
Subject: 30 Add missing includes
Add includes for clock_gettime() and utimensat() calls
introduced in 8.1.2-0.20160123cvs.
aux.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/aux.c b/aux.c
index cb2f7c2..521f97d 100644
@@ -32,6 +32,8 @@
#include "rcv.h"
#include <fcntl.h>
+#include <sys/stat.h>
+#include <time.h>
#include "extern.h"
/*
|