diff options
author | Dave Love <fx@gnu.org> | 2000-06-23 11:36:52 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2000-06-23 11:36:52 +0000 |
commit | 53245ee2d121e463fbeb6d1ef76aebb3968c454e (patch) | |
tree | e82ab7044ec80d395bca8c09122acbba9a50ed56 /lib-src/ebrowse.c | |
parent | ea055732c7aa488a63ce1b9096010da82bdd56ed (diff) | |
download | emacs-53245ee2d121e463fbeb6d1ef76aebb3968c454e.tar.gz |
Move config.h before other includes (which may use feature tests).
Diffstat (limited to 'lib-src/ebrowse.c')
-rw-r--r-- | lib-src/ebrowse.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib-src/ebrowse.c b/lib-src/ebrowse.c index 6051199da86..0099641d2f5 100644 --- a/lib-src/ebrowse.c +++ b/lib-src/ebrowse.c @@ -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. */ |