Mercurial > hg > xemacs-beta
comparison src/nt.c @ 274:ca9a9ec9c1c1 r21-0b35
Import from CVS: tag r21-0b35
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:29:42 +0200 |
parents | c5d627a313b1 |
children | c42ec1d1cded |
comparison
equal
deleted
inserted
replaced
273:411aac7253ef | 274:ca9a9ec9c1c1 |
---|---|
33 #include <fcntl.h> | 33 #include <fcntl.h> |
34 #include <ctype.h> | 34 #include <ctype.h> |
35 #include <signal.h> | 35 #include <signal.h> |
36 | 36 |
37 /* must include CRT headers *before* config.h */ | 37 /* must include CRT headers *before* config.h */ |
38 #include "config.h" | 38 /* ### I don't believe it - martin */ |
39 #include <config.h> | |
39 #include "systime.h" | 40 #include "systime.h" |
40 #include "syssignal.h" | 41 #include "syssignal.h" |
41 #include "sysproc.h" | 42 #include "sysproc.h" |
42 | 43 |
43 #undef access | 44 #undef access |
1375 | 1376 |
1376 return result; | 1377 return result; |
1377 } | 1378 } |
1378 | 1379 |
1379 int | 1380 int |
1380 sys_mkdir (const char * path) | 1381 sys_mkdir (const char * path, int mode_unused) |
1381 { | 1382 { |
1382 return _mkdir (map_win32_filename (path, NULL)); | 1383 return _mkdir (map_win32_filename (path, NULL)); |
1383 } | 1384 } |
1384 | 1385 |
1385 /* Because of long name mapping issues, we need to implement this | 1386 /* Because of long name mapping issues, we need to implement this |