Module Name: src
Committed By: martin
Date: Sun Aug 16 18:15:28 UTC 2009
Modified Files:
src/usr.bin/crunch/crunchide: exec_aout.c
Log Message:
More missing <sys/exec_aout.h> includes
To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/usr.bin/crunch/crunchide/exec_aout.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/crunch/crunchide/exec_aout.c
diff -u src/usr.bin/crunch/crunchide/exec_aout.c:1.10 src/usr.bin/crunch/crunchide/exec_aout.c:1.11
--- src/usr.bin/crunch/crunchide/exec_aout.c:1.10 Wed Apr 15 02:07:20 2009
+++ src/usr.bin/crunch/crunchide/exec_aout.c Sun Aug 16 18:15:28 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: exec_aout.c,v 1.10 2009/04/15 02:07:20 dogcow Exp $ */
+/* $NetBSD: exec_aout.c,v 1.11 2009/08/16 18:15:28 martin Exp $ */
/*
* Copyright (c) 1997 Christopher G. Demetriou. All rights reserved.
@@ -29,7 +29,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: exec_aout.c,v 1.10 2009/04/15 02:07:20 dogcow Exp $");
+__RCSID("$NetBSD: exec_aout.c,v 1.11 2009/08/16 18:15:28 martin Exp $");
#endif
#include <unistd.h>
@@ -39,7 +39,8 @@
#include <errno.h>
#include <a.out.h>
#include <sys/types.h>
-#include <sys/stat.h>
+#include <sys/stat.h>
+#include <sys/exec_aout.h>
#include "extern.h"