/usr/include/log4c/defs.h is in liblog4c-dev 1.2.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | /* $Id$
*
* Copyright 2001-2003, Meiosys (www.meiosys.com). All rights reserved.
*
* See the COPYING file for the terms of usage and distribution.
*/
#ifndef __log4c_defs_h
#define __log4c_defs_h
/**
* @file defs.h
*
* @brief types and declarations enclosures for C++.
*
**/
#ifdef __cplusplus
# define __LOG4C_BEGIN_DECLS extern "C" {
# define __LOG4C_END_DECLS }
#else
# define __LOG4C_BEGIN_DECLS
# define __LOG4C_END_DECLS
#endif
#define LOG4C_INLINE inline
#define LOG4C_API extern
#define LOG4C_DATA extern
#ifdef __HP_cc
#define inline __inline
#endif
#ifdef _WIN32
# include <log4c/config-win32.h>
#endif
#ifndef GCC_VERSION
#define GCC_VERSION (__GNUC__ * 1000 + __GNUC_MINOR__)
#endif /* GCC_VERSION */
#if GCC_VERSION < 2009
#define OLD_VARIADIC_MACRO 1
#endif
#endif /* __log4c_defs_h */
|