This file is indexed.

/usr/include/libGenome-1.3/libGenome/gnVersion.h is in libgenome-1.3-dev 1.3.1-7.

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
/////////////////////////////////////////////////////////////////////////////
// File:            libGenome/gnVersion.h
// Purpose:         Defines libGenome version info
// Description:     Defines Version info
// Rev:             A
// Author:          Aaron Darling 
// Modified by:     
// Copyright:       (c) Aaron Darling 
// Licenses:        See COPYING file for details 
/////////////////////////////////////////////////////////////////////////////
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#ifndef _gnVersion_h_
#define _gnVersion_h_

/* Increment with each new version */
/* Build number with each build, minor with minor changes, major with major API changes */
#define gnMAJOR_VERSION		0
#define gnMINOR_VERSION		5
#define gnBUILD_NUMBER		1
#define gnVERSION_STRING	"libGenome 0.5.1"
#define gnVERSION_NUMBER	(gnMAJOR_VERSION * 1000) + (gnMINOR_VERSION * 100) + gnRELEASE_NUMBER
#define gnBETA_NUMBER		1
#define gnVERSION_FLOAT		gnMAJOR_VERSION + (gnMINOR_VERSION/10.0) + (gnRELEASE_NUMBER/100.0) + (gnBETA_NUMBER/10000.0)

#endif
	//_gnVersion_h_