From: Ralf Wildenhues Date: Tue, 25 May 2010 05:22:43 +0000 (+0200) Subject: Add missing include in test-pwrite.c. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=daeb0e53ab0726d41bbda09ff5d70d67ddcc8f0d;p=pspp Add missing include in test-pwrite.c. * tests/test-pwrite.c: Include string.h, for strcmp. --- diff --git a/ChangeLog b/ChangeLog index df4565bffc..a2bc2aa674 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-05-25 Ralf Wildenhues + + Add missing include in test-pwrite.c. + * tests/test-pwrite.c: Include string.h, for strcmp. + 2010-05-24 Bruno Haible * NEWS: Mention requirement for Automake option 'subdir-objects'. diff --git a/tests/test-pwrite.c b/tests/test-pwrite.c index 549be10801..ef80eb2cd7 100644 --- a/tests/test-pwrite.c +++ b/tests/test-pwrite.c @@ -24,6 +24,7 @@ SIGNATURE_CHECK (pwrite, ssize_t, (int, const void *, size_t, off_t)); #include #include #include +#include #include "macros.h"