This file is indexed.

/usr/share/GNUstep/Libraries/gnustep-base/Versions/1.24/Resources/NSTimeZones/nstimezone.m is in gnustep-base-common 1.24.7-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
/* Test time zone code. */

#include <stdio.h>
#include <Foundation/NSArray.h>
#include <Foundation/NSDate.h>
#include <Foundation/NSDictionary.h>
#include <Foundation/NSTimeZone.h>

int
main ()
{
  id detail;

  printf("time zones for PST:\n%s\n",
[[[[NSTimeZone abbreviationMap] objectForKey: @"PST"] description] UTF8String]);
  printf("time zones:\n%s\n",
[[[NSTimeZone timeZoneArray] description] UTF8String]);
  printf("local time zone:\n%s\n",
[[[NSTimeZone localTimeZone] description] UTF8String]);
  return 0;
}