Include config.h in preparation of moving the definition

of _U_ from the compiler command line into config.h

svn path=/trunk/; revision=40806
This commit is contained in:
Jörg Mayer 2012-02-02 11:54:33 +00:00
parent f628ed7aec
commit 2d7a4646e2
7 changed files with 30 additions and 2 deletions

View File

@ -22,6 +22,10 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <time.h>
#include <string.h>
#include <stdlib.h>

View File

@ -22,6 +22,10 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <string.h>
#include <stdlib.h>
#include <stdarg.h>

View File

@ -22,6 +22,10 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <string.h>
#include <ctype.h>
#include <glib.h>
@ -35,7 +39,7 @@ wrs_strcmp(gconstpointer a, gconstpointer b)
return strcmp((const char*)a, (const char*)b);
}
gint
gint
wrs_strcmp_with_data(gconstpointer a, gconstpointer b, gpointer user_data _U_)
{
return strcmp((const char*)a, (const char*)b);
@ -47,7 +51,7 @@ wrs_str_equal(gconstpointer a, gconstpointer b)
return !strcmp((const char*)a, (const char*)b);
}
guchar
guchar
wrs_check_charset(const guchar table[256], const char *str)
{
const char *p = str;

View File

@ -23,6 +23,10 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "drange.h"
/* drange_node constructor */

View File

@ -27,6 +27,10 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <stdio.h>
#include <glib.h>
#include <assert.h>

View File

@ -54,6 +54,10 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <glib.h>
#include <string.h>
#include <errno.h>

View File

@ -28,6 +28,10 @@
** Updated to sqlite lemon version 1.59
** $Id$
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>