diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2012-07-09 16:01:41 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2012-07-09 16:01:41 +0200 |
commit | ad0a19b70ec45539c65db17cd14098fce8086c93 (patch) | |
tree | 2129e91ef02f4e78d6f47b83fa53bd881091af7a /lib-src/emacsclient.c | |
parent | 794327722e006fb4bceadca844eb49000131fd8e (diff) | |
download | emacs-ad0a19b70ec45539c65db17cd14098fce8086c93.tar.gz |
lib-src/emacsclient.c (w32_execvp): Declare execvp to silence the compiler.
Diffstat (limited to 'lib-src/emacsclient.c')
-rw-r--r-- | lib-src/emacsclient.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c index 46a4fdb26e7..5487c147079 100644 --- a/lib-src/emacsclient.c +++ b/lib-src/emacsclient.c @@ -463,6 +463,7 @@ int w32_execvp (const char *path, char **argv) { int i; + extern int execvp (const char*, char **); /* Required to allow a .BAT script as alternate editor. */ argv[0] = (char *) alternate_editor; |