ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/standard.h
(Generate patch)

Comparing ray/src/common/standard.h (file contents):
Revision 1.2 by greg, Thu Jul 27 22:41:04 1989 UTC vs.
Revision 2.31 by greg, Fri Jun 27 06:53:22 2003 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1988 Regents of the University of California */
2 <
3 < /* SCCSid "$SunId$ LBL" */
4 <
1 > /* RCSid $Id$ */
2   /*
3 < *      Miscellaneous definitions required by many routines.
3 > *      Collected includes required by many Radiance callers
4   */
5 + #ifndef _RAD_STANDARD_H_
6 + #define _RAD_STANDARD_H_
7  
8 < #include  <stdio.h>
8 > #include  "copyright.h"
9  
10 < #include  <math.h>
10 > #include  "rtio.h"
11 > #include  "rtmisc.h"
12 > #include  "rtmath.h"
13 > #include  "rterror.h"
14  
15 < #include  <errno.h>
15 > #endif /* _RAD_STANDARD_H_ */
16  
15 #include  "fvect.h"
16
17 #define  FHUGE          (1e10)          /* large real number */
18 #define  FTINY          (1e-6)          /* small real number */
19
20 #ifdef  M_PI
21 #define  PI             M_PI
22 #else
23 #define  PI             3.14159265358979323846
24 #endif
25
26 #ifndef  F_OK                   /* mode bits for access(2) call */
27 #define  R_OK           4               /* readable */
28 #define  W_OK           2               /* writable */
29 #define  X_OK           1               /* executable */
30 #define  F_OK           0               /* exists */
31 #endif
32                                /* error codes */
33 #define  WARNING        1               /* non-fatal error */
34 #define  USER           2               /* fatal user-caused error */
35 #define  SYSTEM         3               /* fatal system-related error */
36 #define  INTERNAL       4               /* fatal program-related error */
37 #define  CONSISTENCY    5               /* bad consistency check, abort */
38 #define  COMMAND        6               /* interactive error */
39
40 extern char  errmsg[];                  /* global buffer for error messages */
41
42 extern int  errno;                      /* system error number */
43
44 extern char  *sskip();
45 extern char  *getpath();
46 extern char  *malloc(), *calloc(), *realloc();
47 extern char  *bmalloc(), *savestr(), *savqstr();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines