diff options
Diffstat (limited to 'nt/cmdproxy.c')
| -rw-r--r-- | nt/cmdproxy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nt/cmdproxy.c b/nt/cmdproxy.c index 9a98e1e5034..b9572570c5f 100644 --- a/nt/cmdproxy.c +++ b/nt/cmdproxy.c | |||
| @@ -33,6 +33,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 33 | #include <malloc.h> /* alloca */ | 33 | #include <malloc.h> /* alloca */ |
| 34 | #include <stdlib.h> /* getenv */ | 34 | #include <stdlib.h> /* getenv */ |
| 35 | #include <string.h> /* strlen */ | 35 | #include <string.h> /* strlen */ |
| 36 | #include <ctype.h> /* isspace, isalpha */ | ||
| 36 | 37 | ||
| 37 | /* We don't want to include stdio.h because we are already duplicating | 38 | /* We don't want to include stdio.h because we are already duplicating |
| 38 | lots of it here */ | 39 | lots of it here */ |
| @@ -251,7 +252,6 @@ make_absolute (const char *prog) | |||
| 251 | char curdir[MAX_PATH]; | 252 | char curdir[MAX_PATH]; |
| 252 | char *p, *path; | 253 | char *p, *path; |
| 253 | const char *fname; | 254 | const char *fname; |
| 254 | int i; | ||
| 255 | 255 | ||
| 256 | /* At least partial absolute path specified; search there. */ | 256 | /* At least partial absolute path specified; search there. */ |
| 257 | if ((isalpha (prog[0]) && prog[1] == ':') || | 257 | if ((isalpha (prog[0]) && prog[1] == ':') || |