Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/alpha/stand as pointed out by simonb, since we've m...
details: https://anonhg.NetBSD.org/src/rev/c62edb96b5a7
branches: trunk
changeset: 467954:c62edb96b5a7
user: cgd <cgd%NetBSD.org@localhost>
date: Wed Mar 31 16:12:51 1999 +0000
description:
as pointed out by simonb, since we've moved to ELF __main() calls
aren't emittid anymore.
diffstat:
sys/arch/alpha/stand/bootxx/bootxx.c | 4 ++--
sys/arch/alpha/stand/common/boot.c | 4 ++--
sys/arch/alpha/stand/common/start.S | 4 ++--
3 files changed, 6 insertions(+), 6 deletions(-)
diffs (54 lines):
diff -r d7fbefa3aa81 -r c62edb96b5a7 sys/arch/alpha/stand/bootxx/bootxx.c
--- a/sys/arch/alpha/stand/bootxx/bootxx.c Wed Mar 31 15:38:32 1999 +0000
+++ b/sys/arch/alpha/stand/bootxx/bootxx.c Wed Mar 31 16:12:51 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: bootxx.c,v 1.8 1999/03/31 03:03:01 cgd Exp $ */
+/* $NetBSD: bootxx.c,v 1.9 1999/03/31 16:12:51 cgd Exp $ */
/*
* Copyright (C) 1998 by Ross Harvey
@@ -174,7 +174,7 @@
}
void
-main_()
+main()
{
int fd;
char *loadaddr;
diff -r d7fbefa3aa81 -r c62edb96b5a7 sys/arch/alpha/stand/common/boot.c
--- a/sys/arch/alpha/stand/common/boot.c Wed Mar 31 15:38:32 1999 +0000
+++ b/sys/arch/alpha/stand/common/boot.c Wed Mar 31 16:12:51 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: boot.c,v 1.13 1999/03/31 03:03:01 cgd Exp $ */
+/* $NetBSD: boot.c,v 1.14 1999/03/31 16:12:51 cgd Exp $ */
/*
* Copyright (c) 1992, 1993
@@ -78,7 +78,7 @@
};
void
-main_(fd)
+main(fd)
int fd;
{
char *name, **namep;
diff -r d7fbefa3aa81 -r c62edb96b5a7 sys/arch/alpha/stand/common/start.S
--- a/sys/arch/alpha/stand/common/start.S Wed Mar 31 15:38:32 1999 +0000
+++ b/sys/arch/alpha/stand/common/start.S Wed Mar 31 16:12:51 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: start.S,v 1.8 1999/03/31 06:28:41 cgd Exp $ */
+/* $NetBSD: start.S,v 1.9 1999/03/31 16:12:52 cgd Exp $ */
/*
* Mach Operating System
@@ -62,7 +62,7 @@
or s0,zero,a0
#endif /* !defined(PRIMARY_BOOTBLOCK) && !defined(UNIFIED_BOOTBLOCK) */
- CALL(main_) /* transfer to C */
+ CALL(main) /* transfer to C */
XLEAF(_rtt, 0)
XLEAF(halt, 0)
Home |
Main Index |
Thread Index |
Old Index