File:  [parser3project] / sql / pgsql / config_includes.h
Revision 1.6: download - view: text, annotated - select for diffs - revision graph
Fri Mar 16 10:05:04 2012 UTC (14 years, 3 months ago) by moko
Branches: MAIN
CVS tags: pgsql_release_10_5, pgsql_release_10_4, HEAD
ident now works under Linux + ident displays filenames (closes issue #818)
Copyright updated

/** @file
	Parser PgSQL driver: includes all Configure-d headers

	Copyright (c) 2001-2012 Art. Lebedev Studio (http://www.artlebedev.com)

	Author: Alexander Petrosyan <paf@design.ru> (http://design.ru/paf)

	$Id: config_includes.h,v 1.6 2012/03/16 10:05:04 moko Exp $


	when used Configure [HAVE_CONFIG_H] it uses defines from Configure,
	fixed otherwise.
*/

#if HAVE_CONFIG_H
#	include "config_auto.h"
#else
#	include "config_fixed.h"
#endif

#ifdef HAVE_STRING_H
#	include <string.h>
#endif

#ifdef HAVE_STDIO_H
#	include <stdio.h>
#endif

#ifdef HAVE_STDLIB_H
#	include <stdlib.h>
#endif

#ifdef HAVE_SETJMP_H
#	include <setjmp.h>
#endif

#ifdef HAVE_CTYPE_H
#	include <ctype.h>
#endif

E-mail: