2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 13:38:26 +00:00

need sys/types.h and sys/stat.h for chmod() prototype (non-portable).

This commit is contained in:
David Lawrence 2000-07-26 22:46:07 +00:00
parent 3c9b0570ed
commit 0a7a0e19c4

View File

@ -15,12 +15,15 @@
* SOFTWARE.
*/
/* $Id: fsaccess_test.c,v 1.4 2000/06/23 16:18:55 tale Exp $ */
/* $Id: fsaccess_test.c,v 1.5 2000/07/26 22:46:07 tale Exp $ */
#include <config.h>
#include <stdio.h>
#include <sys/types.h> /* Non-portable. */
#include <sys/stat.h> /* Non-portable. */
#include <isc/fsaccess.h>
#include <isc/result.h>