Mercurial > hg > xemacs-beta
comparison src/unexalpha.c @ 394:7d59cb494b73 r21-2-12
Import from CVS: tag r21-2-12
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:11:37 +0200 |
parents | 6240c7796c7a |
children | 74fd4e045ea6 |
comparison
equal
deleted
inserted
replaced
393:2e030b8965b1 | 394:7d59cb494b73 |
---|---|
208 | 208 |
209 nhdr.aout.dsize = brk - DATA_START; | 209 nhdr.aout.dsize = brk - DATA_START; |
210 nhdr.aout.bsize = 0; | 210 nhdr.aout.bsize = 0; |
211 if (entry_address == 0) | 211 if (entry_address == 0) |
212 { | 212 { |
213 extern DEFAULT_ENTRY_ADDRESS (); | 213 extern int DEFAULT_ENTRY_ADDRESS (void); |
214 nhdr.aout.entry = (unsigned long)DEFAULT_ENTRY_ADDRESS; | 214 nhdr.aout.entry = (unsigned long)DEFAULT_ENTRY_ADDRESS; |
215 } | 215 } |
216 else | 216 else |
217 nhdr.aout.entry = entry_address; | 217 nhdr.aout.entry = entry_address; |
218 | 218 |