Mercurial > hg > xemacs-beta
comparison src/malloc.c @ 286:57709be46d1b r21-0b41
Import from CVS: tag r21-0b41
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:35:03 +0200 |
parents | 41ff10fd062f |
children | 19dcec799385 |
comparison
equal
deleted
inserted
replaced
285:9a3756523c1b | 286:57709be46d1b |
---|---|
184 | 184 |
185 #ifdef __STDC_ | 185 #ifdef __STDC_ |
186 #ifndef HPUX | 186 #ifndef HPUX |
187 /* not sure where this for NetBSD should really go | 187 /* not sure where this for NetBSD should really go |
188 and it probably applies to other systems */ | 188 and it probably applies to other systems */ |
189 #if !defined(__NetBSD__) && !defined(__bsdi__) | 189 #if !defined(__NetBSD__) && !defined(__bsdi__) && !defined(__OpenBSD__) |
190 extern void *sbrk (ptrdiff_t); | 190 extern void *sbrk (ptrdiff_t); |
191 #else | 191 #else |
192 extern char *sbrk (); | 192 extern char *sbrk (); |
193 #endif /* __NetBSD__ */ | 193 #endif /* __NetBSD__ or __OpenBSD__ */ |
194 #endif /* HPUX */ | 194 #endif /* HPUX */ |
195 #else | 195 #else |
196 extern void *sbrk (); | 196 extern void *sbrk (); |
197 #endif /* __STDC__ */ | 197 #endif /* __STDC__ */ |
198 | 198 |