Update of /cvsroot/sbcl/sbcl/src/runtime
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1079/src/runtime
Modified Files:
win32-os.c
Log Message:
0.9.8.31:
Implement (following James Bielman) unix-access for windows.
... use access() not _access(); no, I have no idea why this
makes sense (in either direction).
Index: win32-os.c
===================================================================
RCS file: /cvsroot/sbcl/sbcl/src/runtime/win32-os.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- win32-os.c 3 Jan 2006 14:45:54 -0000 1.2
+++ win32-os.c 10 Jan 2006 17:39:29 -0000 1.3
@@ -600,6 +600,7 @@
GetProcAddress(0, 0);
mkdir(0);
isatty(0);
+ access(0,0)
}
/* EOF */
|