This file is indexed.

/usr/share/lua/5.1/posix/sys.lua is in lua-posix 33.4.0-2.

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
local posix = require "posix"

local M = {}

-- For backwards compatibility with release 32, copy previous
-- entries into `posix.sys` namespace.
for _, fn in ipairs {
  "euidaccess", "pipeline", "pipeline_iterator", "pipeline_slurp",
  "spawn", "timeradd", "timercmp", "timersub"
} do
  M[fn] = posix[fn]
end

return M