This file is indexed.

/usr/include/gom-1.0/gom/gom-autocleanups.h is in libgom-1.0-dev 0.3.1-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
/* gom-adapter.h
 *
 * Copyright (C) 2015 Alexander Larsson <alexl@redhat.com>
 *
 * This file is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This file 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef GOM_AUTOCLEANUPS_H
#define GOM_AUTOCLEANUPS_H

/* We need all the types, so don't try to include this directly */
#if !defined (GOM_INSIDE)
#error "Include <gom.h> instead of gom-autocleanups.h."
#endif

#ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC

G_DEFINE_AUTOPTR_CLEANUP_FUNC(GomAdapter, g_object_unref)
G_DEFINE_AUTOPTR_CLEANUP_FUNC(GomCommand, g_object_unref)
G_DEFINE_AUTOPTR_CLEANUP_FUNC(GomCommandBuilder, g_object_unref)
G_DEFINE_AUTOPTR_CLEANUP_FUNC(GomCursor, g_object_unref)
G_DEFINE_AUTOPTR_CLEANUP_FUNC(GomFilter, g_object_unref)
G_DEFINE_AUTOPTR_CLEANUP_FUNC(GomRepository, g_object_unref)
G_DEFINE_AUTOPTR_CLEANUP_FUNC(GomResource, g_object_unref)
G_DEFINE_AUTOPTR_CLEANUP_FUNC(GomResourceGroup, g_object_unref)

#endif

#endif /* GOM_AUTOCLEANUP_H */