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

Comparing ray/src/common/ealloc.c (file contents):
Revision 2.6 by schorsch, Wed Jul 30 10:11:06 2003 UTC vs.
Revision 2.7 by schorsch, Mon Oct 27 10:19:31 2003 UTC

# Line 13 | Line 13 | static const char      RCSid[] = "$Id$";
13  
14   #include "rterror.h"
15  
16 < char *  /* return pointer to n uninitialized bytes */
16 > extern char *   /* return pointer to n uninitialized bytes */
17   emalloc(unsigned int  n)
18   {
19          register char  *cp;
# Line 29 | Line 29 | emalloc(unsigned int  n)
29   }
30  
31  
32 < char *                  /* return pointer to initialized memory */
32 > extern char *                   /* return pointer to initialized memory */
33   ecalloc(register unsigned int ne, unsigned int es)
34   {
35          register char  *cp;
# Line 49 | Line 49 | ecalloc(register unsigned int ne, unsigned int es)
49   }
50  
51  
52 < char *                  /* reallocate cp to size n */
52 > extern char *                   /* reallocate cp to size n */
53   erealloc(register char  *cp, unsigned int  n)
54   {
55          if (n == 0) {
# Line 71 | Line 71 | erealloc(register char  *cp, unsigned int  n)
71   }
72  
73  
74 < void                    /* free memory allocated by above */
74 > extern void                     /* free memory allocated by above */
75   efree(char  *cp)
76   {
77          free((void *)cp);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines