diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-01-09 00:00:02 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-01-09 00:00:02 -0800 |
commit | 613f7bda1d003048ad79e7c4bba744e5057d609e (patch) | |
tree | ef26a6cc9e6de7b3af3d553f26e8fa141827e786 /lib-src/emacsclient.c | |
parent | 2582eaa4cc48cfff2ea645f167d1f7ae6541eb7e (diff) | |
download | emacs-613f7bda1d003048ad79e7c4bba744e5057d609e.tar.gz |
Include <getopt.h> not "getopt.h".
* ebrowse.c, emacsclient.c: Include <getopt.h>, not "getopt.h".
Since getopt.h is no longer in this directory, there's no point
using the form with double-quotes.
Diffstat (limited to 'lib-src/emacsclient.c')
-rw-r--r-- | lib-src/emacsclient.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c index 48ea3d22dc9..7bf19d11473 100644 --- a/lib-src/emacsclient.c +++ b/lib-src/emacsclient.c @@ -74,7 +74,7 @@ char *w32_getenv (char *); #include <stdarg.h> #include <ctype.h> #include <stdio.h> -#include "getopt.h" +#include <getopt.h> #ifdef HAVE_UNISTD_H # include <unistd.h> #endif |