Include <unistd.h>, if we have it, to declare "unlink()".

svn path=/trunk/; revision=4094
This commit is contained in:
Guy Harris 2001-10-28 01:51:46 +00:00
parent 594c839f55
commit 1b526aa894
1 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,6 @@
/* file.c
*
* $Id: file.c,v 1.71 2001/10/19 20:18:48 guy Exp $
* $Id: file.c,v 1.72 2001/10/28 01:51:46 guy Exp $
*
* Wiretap Library
* Copyright (c) 1998 by Gilbert Ramirez <gram@xiexie.org>
@ -36,6 +36,10 @@
#include <sys/stat.h>
#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <errno.h>
#ifdef HAVE_IO_H