diff options
author | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1997-01-09 21:19:03 +0000 |
---|---|---|
committer | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1997-01-09 21:19:03 +0000 |
commit | 0504fb9e92c51f5cb350dd97b2d4d31e45dd0d4d (patch) | |
tree | ffe4e74072ff7780dbff3fb253f55b989af0fc7f /sys/arch | |
parent | f236d0ffde677abb17fdcc329a3b0bc1f5befb56 (diff) |
Now that ELF symbols are working (not leading '_'), dont put them
in for these symbols either.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/powerpc/powerpc/pmap.c | 6 |
1 files changed, 3 insertions, 3 deletions
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. */ |