use appropriate typedefs

Signed-off-by: David Rientjes <rientjes@google.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
David Rientjes
2006-08-15 10:40:06 -07:00
committed by Junio C Hamano
parent 0bef57ee44
commit 6f002f984f
4 changed files with 8 additions and 8 deletions

View File

@ -11,7 +11,8 @@ static int err;
static void run_program(void)
{
int pid = fork(), status;
pid_t pid = fork();
int status;
if (pid < 0)
die("unable to fork");