changeset 112316:2887524f362a

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.
author Paul Eggert <eggert@cs.ucla.edu>
date Sun, 09 Jan 2011 00:00:02 -0800
parents e0da33ff5fa5
children 7df2e30d72ec
files lib-src/ChangeLog lib-src/ebrowse.c lib-src/emacsclient.c
diffstat 3 files changed, 7 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lib-src/ChangeLog	Sat Jan 08 23:46:17 2011 -0800
+++ b/lib-src/ChangeLog	Sun Jan 09 00:00:02 2011 -0800
@@ -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.
--- a/lib-src/ebrowse.c	Sat Jan 08 23:46:17 2011 -0800
+++ b/lib-src/ebrowse.c	Sun Jan 09 00:00:02 2011 -0800
@@ -30,7 +30,7 @@
 #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
--- a/lib-src/emacsclient.c	Sat Jan 08 23:46:17 2011 -0800
+++ b/lib-src/emacsclient.c	Sun Jan 09 00:00:02 2011 -0800
@@ -74,7 +74,7 @@
 #include <stdarg.h>
 #include <ctype.h>
 #include <stdio.h>
-#include "getopt.h"
+#include <getopt.h>
 #ifdef HAVE_UNISTD_H
 # include <unistd.h>
 #endif