This file is indexed.

/usr/include/sidlMemory.h is in libsidl-dev 1.4.0.dfsg-8.2.

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
/*
 * File:        memory.h
 * Copyright:   (c) 2004 Lawrence Livermore National Security, LLC
 * Revision:    @(#) $Revision: 6171 $
 * Date:        $Date: 2007-10-08 16:39:28 -0700 (Mon, 08 Oct 2007) $
 * Description: Replacement memory allocation functions
 *
 */

#ifndef included_sidlMemory_h
#define included_sidlMemory_h
#include "babel_config.h"
#ifdef __cplusplus
extern "C" {
#endif
#ifdef malloc
#undef malloc
#endif
#ifdef realloc
#undef realloc
#endif
#include <sys/types.h>

#if ! HAVE_MALLOC
void *rpl_malloc(size_t n);
#endif

#if ! HAVE_REALLOC
void *rpl_realloc(void *ptr, size_t n);
#endif

#ifdef __cplusplus
}
#endif
#endif /*  included_sidlMemory_h */