/usr/include/wireshark/epan/g_gnuc.h is in libwireshark-dev 1.6.7-1.
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 | /* g_gnuc.h
* Definitions of macros to conditionally do GCC optimization or code checks
*
* $Id: g_gnuc.h 36825 2011-04-22 17:57:10Z morriss $
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* 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 2
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef __G_GNUC_H__
#define __G_GNUC_H__
/**
* GLib 2.6 has the ability to enable better optimization of malloc functions.
* Hide the differences between different glib versions in this G_GNUC_MALLOC macro.
*/
#if ! GLIB_CHECK_VERSION(2,6,0)
#define G_GNUC_MALLOC
#endif
/* Glib 2.8 and later has this. */
#if ! GLIB_CHECK_VERSION(2,8,0)
#define G_GNUC_NULL_TERMINATED
#endif
#if ! GLIB_CHECK_VERSION(2,10,0)
#define G_GNUC_WARN_UNUSED_RESULT
#endif
#endif /* g_gnuc.h */
|