/* ACC -- Automatic Compiler Configuration
 
 
 
   Copyright (C) 1996-2004 Markus Franz Xaver Johannes Oberhumer
 
   All Rights Reserved.
 
 
 
   This software is a copyrighted work licensed under the terms of
 
   the GNU General Public License. Please consult the file "ACC_LICENSE"
 
   for details.
 
 
 
   Markus F.X.J. Oberhumer
 
   <markus@oberhumer.com>
 
   http://www.oberhumer.com/
 
 */
 
 
 
 
 
#ifndef __ACC_INCD_H_INCLUDED
 
#define __ACC_INCD_H_INCLUDED 1
 
 
 
/* default system includes */
 
/* see Autoconf:
 
 *   headers.m4, _AC_INCLUDES_DEFAULT_REQUIREMENTS ac_includes_default
 
 */
 
 
 
#include <stdio.h>
 
#if defined(HAVE_TIME_H) && defined(__MSL__) && defined(__cplusplus)
 
# include <time.h>
 
#endif
 
#if HAVE_SYS_TYPES_H
 
# include <sys/types.h>
 
#endif
 
#if HAVE_SYS_STAT_H
 
# include <sys/stat.h>
 
#endif
 
#if STDC_HEADERS
 
# include <stdlib.h>
 
# include <stddef.h>
 
#else
 
# if HAVE_STDLIB_H
 
#  include <stdlib.h>
 
# endif
 
#endif
 
#if HAVE_STRING_H
 
# if !STDC_HEADERS && HAVE_MEMORY_H
 
#  include <memory.h>
 
# endif
 
# include <string.h>
 
#endif
 
#if HAVE_STRINGS_H
 
# include <strings.h>
 
#endif
 
#if HAVE_INTTYPES_H
 
# include <inttypes.h>
 
#else
 
# if HAVE_STDINT_H
 
#  include <stdint.h>
 
# endif
 
#endif
 
#if HAVE_UNISTD_H
 
# include <unistd.h>
 
#endif
 
 
 
#endif /* already included */
 
 
 
 
 
/*
 
vi:ts=4:et
 
*/