From: Jim Meyering Date: Fri, 11 Jun 2010 06:50:08 +0000 (+0200) Subject: test-linkat: avoid failed assertion on "other" architectures X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=85b6cb48e0f3bbf83420d9d4cd2d49049da64a87;p=pspp test-linkat: avoid failed assertion on "other" architectures * tests/test-linkat.c: Include , for declarations of stat, lstat, mkdir. Patch by John Rigby, to fix FTBFS on armel, powerpc, sparc: https://bugs.launchpad.net/bugs/591968 --- diff --git a/ChangeLog b/ChangeLog index 0e27cc7acc..cab8f6c6fb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2010-06-11 Jim Meyering + + test-linkat: avoid failed assertion on "other" architectures + * tests/test-linkat.c: Include , for declarations of stat, + lstat, mkdir. Patch by John Rigby, to fix FTBFS on armel, powerpc, + sparc: https://bugs.launchpad.net/bugs/591968 + 2010-06-11 Jim Meyering printf.m4: avoid autoconf's "Expanded Before Required" warning diff --git a/tests/test-linkat.c b/tests/test-linkat.c index 1dbfad5270..cee1c9972c 100644 --- a/tests/test-linkat.c +++ b/tests/test-linkat.c @@ -29,6 +29,7 @@ SIGNATURE_CHECK (linkat, int, (int, char const *, int, char const *, int)); #include #include #include +#include #include "areadlink.h" #include "filenamecat.h"