This file is indexed.

/usr/include/vtk-5.10/vtksys/DateStamp.h is in libvtk5-dev 5.10.1+dfsg-2.1build1.

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
/*============================================================================
  KWSys - Kitware System Library
  Copyright 2000-2009 Kitware, Inc., Insight Software Consortium

  Distributed under the OSI-approved BSD License (the "License");
  see accompanying file Copyright.txt for details.

  This software is distributed WITHOUT ANY WARRANTY; without even the
  implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  See the License for more information.
============================================================================*/
#ifndef vtksys_DateStamp_h
#define vtksys_DateStamp_h

/** Version date integer year.  The format is CCYY.  */
#define vtksys_DATE_STAMP_YEAR          2012

/** Version date integer month.  The format is MM.  */
#define vtksys_DATE_STAMP_MONTH         03

/** Version date integer day.  The format is DD.  */
#define vtksys_DATE_STAMP_DAY           01

/** Version date full integer.  The format is CCYYMMDD.  */
#define vtksys_DATE_STAMP_FULL          20120301

/** Version date string year.  The format is "CCYY".  */
#define vtksys_DATE_STAMP_STRING_YEAR  "2012"

/** Version date string month.  The format is "MM".  */
#define vtksys_DATE_STAMP_STRING_MONTH "03"

/** Version date string day.  The format is "DD".  */
#define vtksys_DATE_STAMP_STRING_DAY   "01"

/** Version date full string.  The format is "CCYYMMDD".  */
#define vtksys_DATE_STAMP_STRING_FULL  "20120301"

/** Version date formatted string.  The format is "CCYY-MM-DD".  */
#define vtksys_DATE_STAMP_STRING       "2012-03-01"

#endif