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

Comparing ray/src/common/gethomedir.c (file contents):
Revision 1.1 by schorsch, Mon Oct 27 10:20:58 2003 UTC vs.
Revision 1.2 by schorsch, Sun Mar 6 01:13:17 2016 UTC

# Line 13 | Line 13 | static const char RCSid[] = "$Id$";
13  
14   #include "rtio.h"
15  
16 < #ifdef _WIN32
16 > #if defined(_WIN32) || defined(_WIN64)
17  
18   char *
19   gethomedir(char *uname, char *path, int plen)
# Line 41 | Line 41 | gethomedir(char *uname, char *path, int plen)
41          return NULL;
42   }
43          
44 < #else /* _WIN32 */
44 > #else /* _WIN32 || _WIN64 */
45  
46  
47   #include <unistd.h>
# Line 77 | Line 77 | gethomedir(char *uname, char *path, int plen)
77          return path;
78   }
79  
80 < #endif /* _WIN32 */
80 > #endif /* _WIN32 || _WIN64 */
81  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines