summaryrefslogtreecommitdiff
path: root/lib-src
diff options
context:
space:
mode:
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/etags.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib-src/etags.c b/lib-src/etags.c
index 22b25678823..c582d61b444 100644
--- a/lib-src/etags.c
+++ b/lib-src/etags.c
@@ -26,16 +26,9 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
* Sam Kendall added C++.
*/
-#include <stdio.h>
-#include <ctype.h>
-#include <sys/types.h>
-#include <sys/stat.h>
-
#include "../src/config.h"
#undef static
-#include "getopt.h"
-
/* AIX requires this to be the first thing in the file. */
#ifdef __GNUC__
#ifndef alloca
@@ -53,6 +46,13 @@ char *alloca ();
#endif /* not HAVE_ALLOCA_H */
#endif /* not __GNUC__ */
+#include <stdio.h>
+#include <ctype.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+
+#include "getopt.h"
+
extern char *malloc (), *realloc ();
extern char *getenv ();
extern char *strcpy (), *strncpy ();