From 6f6420cc9705dcfa545a28c674fddf5703e72c86 Mon Sep 17 00:00:00 2001 From: Jim Meyering <meyering@redhat.com> Date: Tue, 6 Oct 2009 11:11:39 +0200 Subject: [PATCH] linkat: avoid compilation failure * lib/linkat.c: Include <stdint.h> for use of SIZE_MAX. --- ChangeLog | 5 +++++ lib/linkat.c | 1 + 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index 03624976b5..c942631556 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-10-06 Jim Meyering <meyering@redhat.com> + + linkat: avoid compilation failure + * lib/linkat.c: Include <stdint.h> for use of SIZE_MAX. + 2009-10-05 Eric Blake <ebb9@byu.net> linkat: support Linux 2.6.17 diff --git a/lib/linkat.c b/lib/linkat.c index f785d091f8..e0dd8f2867 100644 --- a/lib/linkat.c +++ b/lib/linkat.c @@ -23,6 +23,7 @@ #include <errno.h> #include <fcntl.h> #include <limits.h> +#include <stdint.h> #include <stdlib.h> #include <string.h> #include <sys/stat.h> -- 2.30.2