Commit 55381aa6 authored by Jordi Mallach's avatar Jordi Mallach
Browse files

Include <config.h> only if HAVE_CONFIG_H.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2107 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 31 additions and 10 deletions
+31 -10
......@@ -113,6 +113,7 @@ CVS code -
Change the openfilestruct structure accordingly in order to
handle this. (DLR)
- Convert some ints with predefined boundaries to enums. (DLR)
- Include config.h only if HAVE_CONFIG_H. (Jordi)
- cut.c:
cut_marked_segment()
- Respect concatenate_cut, as we need to use it if we do a
......
......@@ -19,7 +19,9 @@
* *
**************************************************************************/
#include "config.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdlib.h>
#include <string.h>
......
......@@ -19,7 +19,9 @@
* *
**************************************************************************/
#include "config.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdlib.h>
#include <string.h>
......
......@@ -19,7 +19,9 @@
* *
**************************************************************************/
#include "config.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdlib.h>
#include <string.h>
......
......@@ -19,7 +19,9 @@
* *
**************************************************************************/
#include "config.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdlib.h>
#include <assert.h>
......
......@@ -19,7 +19,9 @@
* *
**************************************************************************/
#include "config.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdlib.h>
#include <string.h>
......
......@@ -19,7 +19,9 @@
* *
**************************************************************************/
#include "config.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <stdlib.h>
......
......@@ -19,7 +19,9 @@
* *
**************************************************************************/
#include "config.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdlib.h>
#include <stdarg.h>
......
......@@ -19,7 +19,9 @@
* *
**************************************************************************/
#include "config.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdlib.h>
#include <string.h>
......
......@@ -19,7 +19,9 @@
* *
**************************************************************************/
#include "config.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdlib.h>
#include <string.h>
......
......@@ -19,7 +19,9 @@
* *
**************************************************************************/
#include "config.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdarg.h>
#include <string.h>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment