On Tue, Dec 04, 2001 at 12:00:46AM +0100, Lars Gullik Bjønnes wrote:
> Ok, what is munmap's prototype on your box?

#ifdef  __STDC__
#if     (_POSIX_C_SOURCE > 2)
[...]
extern int munmap(void *, size_t);
[...]
#else
[...]
extern int munmap(caddr_t, size_t);
[...]
#endif  /* (_POSIX_C_SOURCE > 2) */
[...]
#else   /* __STDC__ */
[...]
extern int munmap();
[...]
#endif /* __STDC__ */

-- 
Kayvan A. Sylvan          | Proud husband of       | Father to my kids:
Sylvan Associates, Inc.   | Laura Isabella Sylvan  | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)

Reply via email to