comparison src/unexec.c @ 286:57709be46d1b r21-0b41

Import from CVS: tag r21-0b41
author cvs
date Mon, 13 Aug 2007 10:35:03 +0200
parents ac2d302a0011
children 19dcec799385
comparison
equal deleted inserted replaced
285:9a3756523c1b 286:57709be46d1b
292 #endif 292 #endif
293 #endif 293 #endif
294 #ifndef HPUX 294 #ifndef HPUX
295 /* not sure where this for NetBSD should really go 295 /* not sure where this for NetBSD should really go
296 and it probably applies to other systems */ 296 and it probably applies to other systems */
297 #if !defined(__NetBSD__) && !defined(__bsdi__) 297 #if !defined(__NetBSD__) && !defined(__bsdi__) && !defined(__OpenBSD__)
298 extern void *sbrk (ptrdiff_t); 298 extern void *sbrk (ptrdiff_t);
299 #else 299 #else
300 extern char *sbrk (); 300 extern char *sbrk ();
301 #endif /* __NetBSD__ */ 301 #endif /* __NetBSD__ or __OpenBSD__ */
302 #endif /* HPUX */ 302 #endif /* HPUX */
303 #else 303 #else
304 extern void *sbrk (); 304 extern void *sbrk ();
305 #endif 305 #endif
306 306