[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/unexalpha.c,v
From: |
Dan Nicolaescu |
Subject: |
[Emacs-diffs] Changes to emacs/src/unexalpha.c,v |
Date: |
Wed, 16 Jul 2008 08:06:19 +0000 |
CVSROOT: /cvsroot/emacs
Module name: emacs
Changes by: Dan Nicolaescu <dann> 08/07/16 08:06:18
Index: unexalpha.c
===================================================================
RCS file: /cvsroot/emacs/emacs/src/unexalpha.c,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -b -r1.26 -r1.27
--- unexalpha.c 14 May 2008 07:49:55 -0000 1.26
+++ unexalpha.c 16 Jul 2008 08:06:17 -0000 1.27
@@ -135,13 +135,6 @@
};
-
-/* Define name of label for entry point for the dumped executable. */
-
-#ifndef DEFAULT_ENTRY_ADDRESS
-#define DEFAULT_ENTRY_ADDRESS __start
-#endif
-
void
unexec (new_name, a_name, data_start, bss_start, entry_address)
char *new_name, *a_name;
@@ -271,8 +264,8 @@
nhdr.aout.bsize = 0;
if (entry_address == 0)
{
- extern DEFAULT_ENTRY_ADDRESS ();
- nhdr.aout.entry = (unsigned long)DEFAULT_ENTRY_ADDRESS;
+ extern __start ();
+ nhdr.aout.entry = (unsigned long)__start;
}
else
nhdr.aout.entry = entry_address;
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] Changes to emacs/src/unexalpha.c,v,
Dan Nicolaescu <=