include the headers you use

This commit is contained in:
christos 2012-11-04 22:46:08 +00:00
parent 24f9b938a0
commit 4f048a363d
3 changed files with 10 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: psbuf.c,v 1.18 2010/01/08 10:53:31 pooka Exp $ */
/* $NetBSD: psbuf.c,v 1.19 2012/11/04 22:46:08 christos Exp $ */
/*
* Copyright (c) 2006-2009 Antti Kantee. All Rights Reserved.
@ -27,7 +27,7 @@
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: psbuf.c,v 1.18 2010/01/08 10:53:31 pooka Exp $");
__RCSID("$NetBSD: psbuf.c,v 1.19 2012/11/04 22:46:08 christos Exp $");
#endif /* !lint */
/*
@ -39,6 +39,7 @@ __RCSID("$NetBSD: psbuf.c,v 1.18 2010/01/08 10:53:31 pooka Exp $");
#include <sys/types.h>
#include <sys/time.h>
#include <sys/vnode.h>
#include <sys/socket.h>
#include <err.h>
#include <errno.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: psshfs.c,v 1.65 2011/08/31 13:32:39 joerg Exp $ */
/* $NetBSD: psshfs.c,v 1.66 2012/11/04 22:46:08 christos Exp $ */
/*
* Copyright (c) 2006-2009 Antti Kantee. All Rights Reserved.
@ -41,12 +41,14 @@
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: psshfs.c,v 1.65 2011/08/31 13:32:39 joerg Exp $");
__RCSID("$NetBSD: psshfs.c,v 1.66 2012/11/04 22:46:08 christos Exp $");
#endif /* !lint */
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/socket.h>
#include <stdio.h>
#include <assert.h>
#include <err.h>
#include <errno.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: subr.c,v 1.50 2010/04/01 02:34:09 pooka Exp $ */
/* $NetBSD: subr.c,v 1.51 2012/11/04 22:46:08 christos Exp $ */
/*
* Copyright (c) 2006 Antti Kantee. All Rights Reserved.
@ -27,9 +27,10 @@
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: subr.c,v 1.50 2010/04/01 02:34:09 pooka Exp $");
__RCSID("$NetBSD: subr.c,v 1.51 2012/11/04 22:46:08 christos Exp $");
#endif /* !lint */
#include <stdio.h>
#include <assert.h>
#include <err.h>
#include <errno.h>