summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1999-01-13 16:56:05 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1999-01-13 16:56:05 +0000
commit0cad30ec738475631edbca6d817c941def012852 (patch)
tree68dde0538efb365b44a2cfd20c884c6bb59de55a /src
parentd448f9a9cc2a6f19c887ed9cc354e28f526ae5e4 (diff)
Didn't need to define a replacement for getcwd() under Windows...
git-svn-id: file:///fltk/svn/fltk/trunk@217 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
-rw-r--r--src/filename_absolute.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/filename_absolute.cxx b/src/filename_absolute.cxx
index a0776854e..b525fe82e 100644
--- a/src/filename_absolute.cxx
+++ b/src/filename_absolute.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: filename_absolute.cxx,v 1.4 1999/01/07 19:17:34 mike Exp $"
+// "$Id: filename_absolute.cxx,v 1.5 1999/01/13 16:56:05 mike Exp $"
//
// Filename expansion routines for the Fast Light Tool Kit (FLTK).
//
@@ -34,7 +34,7 @@
#include <string.h>
#if defined(WIN32) && !defined(CYGNUS)
# include <direct.h>
-# define getcwd(a,b) _getdcwd(0,a,b)
+//# define getcwd(a,b) _getdcwd(0,a,b)
#else
# include <unistd.h>
# ifdef __EMX__
@@ -92,5 +92,5 @@ int filename_absolute(char *to,const char *from) {
}
//
-// End of "$Id: filename_absolute.cxx,v 1.4 1999/01/07 19:17:34 mike Exp $".
+// End of "$Id: filename_absolute.cxx,v 1.5 1999/01/13 16:56:05 mike Exp $".
//