This file is indexed.

/usr/include/orc-0.4/orc/orconce.h is in liborc-0.4-dev 1:0.4.26-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
#ifndef _ORC_ONCE_H_
#define _ORC_ONCE_H_

#include <orc/orcutils.h>

ORC_BEGIN_DECLS

typedef struct _OrcMutex OrcMutex;

typedef struct _OrcOnce OrcOnce;

struct _OrcOnce {
  int inited;
  void *value;
};

void orc_once_mutex_lock (void);
void orc_once_mutex_unlock (void);

ORC_END_DECLS

#endif