Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/sys Fix typo in a.out link set macros (s/ifdef/ifndef/).



details:   https://anonhg.NetBSD.org/src/rev/f3a0736732ae
branches:  trunk
changeset: 540106:f3a0736732ae
user:      simonb <simonb%NetBSD.org@localhost>
date:      Thu Dec 05 05:47:24 2002 +0000

description:
Fix typo in a.out link set macros (s/ifdef/ifndef/).

diffstat:

 sys/sys/cdefs_aout.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 9287f7c7b1e2 -r f3a0736732ae sys/sys/cdefs_aout.h
--- a/sys/sys/cdefs_aout.h      Thu Dec 05 04:56:56 2002 +0000
+++ b/sys/sys/cdefs_aout.h      Thu Dec 05 05:47:24 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: cdefs_aout.h,v 1.11 2002/11/01 22:58:44 thorpej Exp $  */
+/*     $NetBSD: cdefs_aout.h,v 1.12 2002/12/05 05:47:24 simonb Exp $   */
 
 /*
  * Written by J.T. Conklin <jtc%wimsey.com@localhost> 01/17/95.
@@ -68,7 +68,7 @@
 #define        __KERNEL_SCCSID(_n,_s)
 #define        __KERNEL_COPYRIGHT(_n, _s) __IDSTRING(__CONCAT(copyright,_n),_s)
 
-#ifdef __lint__
+#ifndef __lint__
 #define        __link_set_make_entry(set, sym, type)                           \
        static void const * const __link_set_##set##_sym_##sym = &sym;  \
        __asm(".stabs \"___link_set_" #set "\", " #type ", 0, 0, _" #sym)



Home | Main Index | Thread Index | Old Index