ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/rtmisc.h
Revision: 3.2
Committed: Mon Jun 30 14:59:11 2003 UTC (20 years, 10 months ago) by schorsch
Content type: text/plain
Branch: MAIN
Changes since 3.1: +3 -14 lines
Log Message:
Replaced most outdated BSD function calls with their posix equivalents, and cleaned up a few other platform dependencies.

File Contents

# Content
1 /* RCSid $Id: rtmisc.h,v 3.1 2003/06/27 06:53:21 greg Exp $ */
2 /*
3 * Miscellaneous Radiance definitions
4 */
5 #ifndef _RAD_RTMISC_H_
6 #define _RAD_RTMISC_H_
7 #ifdef __cplusplus
8 extern "C" {
9 #endif
10
11 #include <stdlib.h>
12 /* memory operations */
13 #ifdef NOSTRUCTASS
14 #include <string.h>
15 #define copystruct(d,s) memcpy((void *)(d),(void *)(s),sizeof(*(d)))
16 #else
17 #define copystruct(d,s) (*(d) = *(s))
18 #endif
19
20 /* defined in bmalloc.c */
21 extern char *bmalloc(unsigned int n);
22 extern void bfree(char *p, unsigned int n);
23
24 #ifdef __cplusplus
25 }
26 #endif
27 #endif /* _RAD_RTMISC_H_ */
28