This file is indexed.

/usr/share/vala/vapi/r_syscall.vapi is in radare2-vala 0.9.6-4.

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
/* radare - LGPL - Copyright 2009 pancake<nopcode.org> */


[Compact]
[CCode (cheader_filename="r_syscall.h", cname="RSyscall", free_function="r_syscall_free", cprefix="r_syscall_")]
public class Radare.RSyscall {
	[CCode (cname="RSyscallItem", free_function="", unref_function="")]
	public class Item {
		string name;
		int swi;
		int num;
		int args;
		string sargs;
	}

	public RSyscall();
	public void setup(string arch, string os, int bits);
	public void setup_file(string file);
	public unowned Item get(int num, int swi);
	public int get_num(string str);
	//public unowned Item get_n(int num);
	public unowned string get_i(int num, int swi);
	public void list();
}