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
master
Jordi Mallach 2004-11-17 23:17:05 +00:00
parent f6159047bc
commit 55381aa614
11 changed files with 31 additions and 10 deletions

View File

@ -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

View File

@ -19,7 +19,9 @@
* *
**************************************************************************/
#include "config.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdlib.h>
#include <string.h>

View File

@ -19,7 +19,9 @@
* *
**************************************************************************/
#include "config.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdlib.h>
#include <string.h>

View File

@ -19,7 +19,9 @@
* *
**************************************************************************/
#include "config.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdlib.h>
#include <string.h>

View File

@ -19,7 +19,9 @@
* *
**************************************************************************/
#include "config.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdlib.h>
#include <assert.h>

View File

@ -19,7 +19,9 @@
* *
**************************************************************************/
#include "config.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdlib.h>
#include <string.h>

View File

@ -19,7 +19,9 @@
* *
**************************************************************************/
#include "config.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <stdlib.h>

View File

@ -19,7 +19,9 @@
* *
**************************************************************************/
#include "config.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdlib.h>
#include <stdarg.h>

View File

@ -19,7 +19,9 @@
* *
**************************************************************************/
#include "config.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdlib.h>
#include <string.h>

View File

@ -19,7 +19,9 @@
* *
**************************************************************************/
#include "config.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdlib.h>
#include <string.h>

View File

@ -19,7 +19,9 @@
* *
**************************************************************************/
#include "config.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdarg.h>
#include <string.h>