From: rahnds Date: Thu, 9 Jan 1997 21:19:02 +0000 (+0000) Subject: Now that ELF symbols are working (not leading '_'), dont put them X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=8b2ab8ea3a7580edabfcc238dbda11db5e845d64;p=openbsd Now that ELF symbols are working (not leading '_'), dont put them in for these symbols either. --- diff --git a/sys/arch/powerpc/powerpc/pmap.c b/sys/arch/powerpc/powerpc/pmap.c index 64e47f746b6..68ff3c249e2 100644 --- a/sys/arch/powerpc/powerpc/pmap.c +++ b/sys/arch/powerpc/powerpc/pmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.c,v 1.3 1997/01/09 03:07:16 rahnds Exp $ */ +/* $OpenBSD: pmap.c,v 1.4 1997/01/09 21:19:02 rahnds Exp $ */ /* $NetBSD: pmap.c,v 1.1 1996/09/30 16:34:52 ws Exp $ */ /* @@ -273,8 +273,8 @@ pte_spill(addr) return 0; } -int avail_start __asm__ ("_avail_start"); -int avail_end __asm__ ("_avail_end"); +int avail_start; +int avail_end; /* * This is called during initppc, before the system is really initialized. */