1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-01 11:14:55 +00:00

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.
This commit is contained in:
Paul Eggert 2011-01-09 00:00:02 -08:00
parent 2582eaa4cc
commit 613f7bda1d
3 changed files with 7 additions and 2 deletions

View File

@ -1,5 +1,10 @@
2011-01-09 Paul Eggert <eggert@cs.ucla.edu>
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.
Remove unused files.
* getopt.c, getopt1.c, getopt_.h, getopt_int.h: Remove.
These files are now in ../lib, copied from gnulib.

View File

@ -30,7 +30,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
#include <string.h>
#include <ctype.h>
#include <assert.h>
#include "getopt.h"
#include <getopt.h>
/* The SunOS compiler doesn't have SEEK_END. */
#ifndef SEEK_END

View File

@ -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