changeset 24266:0fad7c7596be

Fix linking on Windows.
author diego
date Wed, 29 Aug 2007 09:31:44 +0000
parents fc571d853ae1
children 70437b99ccee
files get_path.c
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/get_path.c	Wed Aug 29 09:26:33 2007 +0000
+++ b/get_path.c	Wed Aug 29 09:31:44 2007 +0000
@@ -21,6 +21,10 @@
 #include <unistd.h>
 #endif
 
+#ifdef WIN32
+#include <windows.h>
+#endif
+
 char *get_path(const char *filename){
 	char *homedir;
 	char *buff;