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

Comparing ray/src/common/mat4.c (file contents):
Revision 1.3 by greg, Fri Dec 22 09:24:07 1989 UTC vs.
Revision 1.4 by greg, Thu Jan 18 23:58:56 1990 UTC

# Line 13 | Line 13 | static char SCCSid[] = "$SunId$ LBL";
13  
14   static double  m4tmp[4][4];             /* for efficiency */
15  
16 + #ifdef  BSD
17   #define  copymat4(m4a,m4b)      bcopy((char *)m4b,(char *)m4a,sizeof(m4tmp))
18 + #else
19 + #define  copymat4(m4a,m4b)      (void)memcpy((char *)m4a,(char *)m4b,sizeof(m4tmp))
20 + extern char  *memcpy();
21 + #endif
22  
23  
24   setident4(m4)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines