Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/wdiff/files: wdiff-0.5-headers.patch
Date: Wed, 09 Sep 2009 18:42:41
Message-Id: E1MlS7s-0001ss-5C@stork.gentoo.org
1 vapier 09/09/09 18:42:40
2
3 Added: wdiff-0.5-headers.patch
4 Log:
5 Fix implicit wait() decl warning.
6 (Portage version: 2.2_rc40/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 app-text/wdiff/files/wdiff-0.5-headers.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/wdiff/files/wdiff-0.5-headers.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/wdiff/files/wdiff-0.5-headers.patch?rev=1.1&content-type=text/plain
13
14 Index: wdiff-0.5-headers.patch
15 ===================================================================
16 wdiff.c: In function ‘complete_input_program’:
17 wdiff.c:916: warning: implicit declaration of function ‘wait’
18
19 --- wdiff.c
20 +++ wdiff.c
21 @@ -45,6 +45,7 @@
22 # include <stdlib.h>
23 #endif
24
25 +#include <sys/wait.h>
26 #include <ctype.h>
27 #include <stdio.h>