This file is indexed.

/usr/share/doc/gnustep-dl2/examples/Trading/create.m is in gnustep-dl2 0.12.0-15.1build2.

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
#include "Trading.h"
#include "TradingData.h"

int main()
{
  NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
  id trading = [[Trading alloc] init];
  id data = [[TradingData alloc] init]; 

  [trading recreateTables];
  [data fillTables]; 
  [data saveChanges];
  
  [trading release];
  [data release];
  [pool release];
  return 0;
}