Move config.h before other includes (which may use feature tests).
This commit is contained in:
parent
ea055732c7
commit
53245ee2d1
2 changed files with 9 additions and 4 deletions
|
@ -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.
|
||||
|
|
|
@ -21,6 +21,10 @@
|
|||
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>
|
||||
|
@ -28,10 +32,6 @@
|
|||
#include <assert.h>
|
||||
#include "getopt.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/* Conditionalize function prototypes. */
|
||||
|
||||
#ifdef PROTOTYPES /* From config.h. */
|
||||
|
|
Loading…
Add table
Reference in a new issue