From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mike Frysinger Subject: missing sys/stat.h include in shm.c for fstat64() Date: Fri, 13 Aug 2010 20:10:37 -0400 Message-ID: Mime-Version: 1.0 Content-Transfer-Encoding: QUOTED-PRINTABLE Return-path: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:sender:received:date :x-google-sender-auth:message-id:subject:from:to:content-type :content-transfer-encoding; bh=9kklWPck3XxlpeGPJ1EJZ15WydOr3lEN3hreZa4sxO4=; b=MO7ESy9UBvkNrX5eCs4T+AUNFnTUXteKrOip3Oj2lil/9vBG1bpm6BLuqCLJ9jTtvi XVhQtWSh3m0V8E8e5ngdxVSS/p2ItGQdKHj/aGaGvKYmoRc3OBJH583TGdr7wIpXcijD gfzxLHpTFLgfracPvTAK9X+7zZJHfXGZG5ZZI= Sender: linux-numa-owner@vger.kernel.org List-ID: Content-Type: text/plain; charset="windows-1252" To: linux-numa@vger.kernel.org building on my x86_64 system shows: shm.c: In function =91attach_shared=92: shm.c:139:2: warning: implicit declaration of function =91fstat64=92 and that's simply due to sys/stat.h not being included the homepage doesnt list a git tree or anything, so hand pasting: --- a/shm.c +++ b/shm.c @@ -25,6 +25,7 @@ #include #include #include +#include #include #include #include -mike