1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: Add missing header includes.
Author: Andrey Rakhmatullin <wrar@debian.org>
Bug-Debian: https://bugs.debian.org/1066496
Last-Update: 2024-03-16
Index: rdiff-backup-fs-1.0.0/support/gtree.c
===================================================================
--- rdiff-backup-fs-1.0.0.orig/support/gtree.c
+++ rdiff-backup-fs-1.0.0/support/gtree.c
@@ -1,4 +1,7 @@
+#define _GNU_SOURCE
#include <fcntl.h>
+#include <stdio.h>
+#include <time.h>
#include "gtree.h"
#include "gutils.h"
|