mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
- Fix ncftp build.
svn path=/trunk/; revision=37198
This commit is contained in:
parent
d4e2952aa7
commit
da4a4656ca
2 changed files with 3 additions and 1 deletions
|
@ -130,7 +130,7 @@ static int gl_tab(char *buf, int offset, int *loc, size_t bufsize);
|
|||
gl_in_hook_proc gl_in_hook = 0;
|
||||
gl_out_hook_proc gl_out_hook = 0;
|
||||
gl_tab_hook_proc gl_tab_hook = gl_tab;
|
||||
gl_strlen_proc gl_strlen = (gl_strlen_proc) strlen;
|
||||
size_t gl_strlen(const char *s) { return strlen(s); }
|
||||
gl_tab_completion_proc gl_completion_proc = 0;
|
||||
int gl_filename_quoting_desired = -1; /* default to unspecified */
|
||||
const char *gl_filename_quote_characters = " \t*?<>|;&()[]$`";
|
||||
|
|
|
@ -24,6 +24,8 @@
|
|||
//# include <shlobj.h>
|
||||
# ifdef HAVE_UNISTD_H
|
||||
# include <unistd.h>
|
||||
# else
|
||||
# include <process.h>
|
||||
# endif
|
||||
# include <errno.h>
|
||||
# include <stdio.h>
|
||||
|
|
Loading…
Reference in a new issue