]> code.delx.au - gnu-emacs/commitdiff
Move config.h before other includes (which may use feature tests).
authorDave Love <fx@gnu.org>
Fri, 23 Jun 2000 11:36:52 +0000 (11:36 +0000)
committerDave Love <fx@gnu.org>
Fri, 23 Jun 2000 11:36:52 +0000 (11:36 +0000)
lib-src/ChangeLog
lib-src/ebrowse.c

index 84672f5d2f4a45c12e97b580c73cfa0ad7f40db4..616aebb41fc12d1ddd056c2848fa533887e93042 100644 (file)
@@ -1,3 +1,8 @@
+2000-06-23  Dave Love  <fx@gnu.org>
+
+       * ebrowse.c: Move config.h before other includes (which may use
+       feature tests).
+
 2000-06-14  Jim Meyering  <meyering@lucent.com>
 
        * grep-changelog: Fix typos in comments.  Remove trailing blanks.
index 6051199da86fcac91afa5b2149de2331dbdb13ce..0099641d2f50aa4c404827ae2457e21724f63307 100644 (file)
    along with GNU Emacs; see the file COPYING.  If not, write to
    the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 #include <assert.h>
 #include "getopt.h"
 
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
 /* Conditionalize function prototypes.  */
 
 #ifdef PROTOTYPES              /* From config.h.  */