Module Name: src
Committed By: he
Date: Thu Aug 20 08:30:04 UTC 2009
Modified Files:
src/lib/libc/gen: nlist.c nlist_aout.c
Log Message:
Instead of including <a.out.h> to get at "struct nlist" (with a comment
to explain it), include <nlist.h> instead, so that our mips ports don't
error out in the absence of aout_machdep.h.
To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/lib/libc/gen/nlist.c
cvs rdiff -u -r1.19 -r1.20 src/lib/libc/gen/nlist_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/lib/libc/gen/nlist.c
diff -u src/lib/libc/gen/nlist.c:1.21 src/lib/libc/gen/nlist.c:1.22
--- src/lib/libc/gen/nlist.c:1.21 Thu Aug 7 16:42:54 2003
+++ src/lib/libc/gen/nlist.c Thu Aug 20 08:30:04 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: nlist.c,v 1.21 2003/08/07 16:42:54 agc Exp $ */
+/* $NetBSD: nlist.c,v 1.22 2009/08/20 08:30:04 he Exp $ */
/*
* Copyright (c) 1989, 1993
@@ -66,7 +66,7 @@
#if 0
static char sccsid[] = "@(#)nlist.c 8.1 (Berkeley) 6/4/93";
#else
-__RCSID("$NetBSD: nlist.c,v 1.21 2003/08/07 16:42:54 agc Exp $");
+__RCSID("$NetBSD: nlist.c,v 1.22 2009/08/20 08:30:04 he Exp $");
#endif
#endif /* LIBC_SCCS and not lint */
@@ -81,7 +81,7 @@
#include <stdio.h>
#include <string.h>
#include <unistd.h>
-#include <a.out.h> /* for 'struct nlist' declaration */
+#include <nlist.h>
#if 0
#ifdef __weak_alias
Index: src/lib/libc/gen/nlist_aout.c
diff -u src/lib/libc/gen/nlist_aout.c:1.19 src/lib/libc/gen/nlist_aout.c:1.20
--- src/lib/libc/gen/nlist_aout.c:1.19 Sun Aug 16 03:56:26 2009
+++ src/lib/libc/gen/nlist_aout.c Thu Aug 20 08:30:04 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: nlist_aout.c,v 1.19 2009/08/16 03:56:26 matt Exp $ */
+/* $NetBSD: nlist_aout.c,v 1.20 2009/08/20 08:30:04 he Exp $ */
/*
* Copyright (c) 1989, 1993
@@ -66,7 +66,7 @@
#if 0
static char sccsid[] = "@(#)nlist.c 8.1 (Berkeley) 6/4/93";
#else
-__RCSID("$NetBSD: nlist_aout.c,v 1.19 2009/08/16 03:56:26 matt Exp $");
+__RCSID("$NetBSD: nlist_aout.c,v 1.20 2009/08/20 08:30:04 he Exp $");
#endif
#endif /* LIBC_SCCS and not lint */
@@ -82,7 +82,7 @@
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
-#include <a.out.h> /* for 'struct nlist' declaration */
+#include <nlist.h>
#include "nlist_private.h"