/* * Copyright (C) 2010-2011 Joel Rosdahl * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the Free * Software Foundation; either version 3 of the License, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * You should have received a copy of the GNU General Public License along with * this program; if not, write to the Free Software Foundation, Inc., 51 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef CCACHE_SYSTEM_H #define CCACHE_SYSTEM_H #include "config.h" #include #ifdef HAVE_SYS_MMAN_H #include #endif #include #include #ifdef HAVE_SYS_WAIT_H #include #endif #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #if !HAVE_VSNPRINTF int rpl_vsnprintf(char *, size_t, const char *, va_list); #define vsnprintf rpl_vsnprintf #endif #if !HAVE_SNPRINTF int rpl_snprintf(char *, size_t, const char *, ...); #define snprintf rpl_snprintf #endif #if !HAVE_VASPRINTF int rpl_vasprintf(char **, const char *, va_list); #define vasprintf rpl_vasprintf #endif #if !HAVE_ASPRINTF int rpl_asprintf(char **, const char *, ...); #define asprintf rpl_asprintf #endif #ifdef HAVE_STDBOOL_H # include #else # ifndef HAVE__BOOL # ifdef __cplusplus typedef bool _Bool; # else # define _Bool signed char # endif # endif # define bool _Bool # define false 0 # define true 1 # define __bool_true_false_are_defined 1 #endif #endif /* CCACHE_SYSTEM_H */