Mercurial > hg > xemacs-beta
comparison src/unexalpha.c @ 363:972bbb6d6ca2 r21-1-11
Import from CVS: tag r21-1-11
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:59:28 +0200 |
parents | 9ea74add5d37 |
children | cc15677e0335 |
comparison
equal
deleted
inserted
replaced
362:1e474c183006 | 363:972bbb6d6ca2 |
---|---|
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 |