diff options
Diffstat (limited to 'sftp.c')
-rw-r--r-- | sftp.c | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -43,9 +43,16 @@ typedef void EditLine; | |||
43 | #include <stdio.h> | 43 | #include <stdio.h> |
44 | #include <string.h> | 44 | #include <string.h> |
45 | #include <unistd.h> | 45 | #include <unistd.h> |
46 | #include <util.h> | ||
47 | #include <stdarg.h> | 46 | #include <stdarg.h> |
48 | 47 | ||
48 | #ifdef HAVE_UTIL_H | ||
49 | # include <util.h> | ||
50 | #endif | ||
51 | |||
52 | #ifdef HAVE_LIBUTIL_H | ||
53 | # include <libutil.h> | ||
54 | #endif | ||
55 | |||
49 | #include "xmalloc.h" | 56 | #include "xmalloc.h" |
50 | #include "log.h" | 57 | #include "log.h" |
51 | #include "pathnames.h" | 58 | #include "pathnames.h" |