| 1 |
schorsch |
3.5 |
/* RCSid $Id: rtmisc.h,v 3.4 2003/07/17 09:21:29 schorsch Exp $ */
|
| 2 |
greg |
3.1 |
/*
|
| 3 |
|
|
* Miscellaneous Radiance definitions
|
| 4 |
|
|
*/
|
| 5 |
|
|
#ifndef _RAD_RTMISC_H_
|
| 6 |
|
|
#define _RAD_RTMISC_H_
|
| 7 |
|
|
|
| 8 |
|
|
#include <stdlib.h>
|
| 9 |
schorsch |
3.3 |
|
| 10 |
|
|
#ifdef __cplusplus
|
| 11 |
|
|
extern "C" {
|
| 12 |
greg |
3.1 |
#endif
|
| 13 |
|
|
|
| 14 |
|
|
/* defined in bmalloc.c */
|
| 15 |
|
|
extern char *bmalloc(unsigned int n);
|
| 16 |
|
|
extern void bfree(char *p, unsigned int n);
|
| 17 |
schorsch |
3.4 |
/* defined in myhostname.c */
|
| 18 |
|
|
extern char *myhostname(void);
|
| 19 |
greg |
3.1 |
|
| 20 |
|
|
#ifdef __cplusplus
|
| 21 |
|
|
}
|
| 22 |
|
|
#endif
|
| 23 |
|
|
#endif /* _RAD_RTMISC_H_ */
|
| 24 |
|
|
|