This file is indexed.

/usr/share/psychtoolbox-3/PsychOneliners/IsMinimumOSXVersion.m is in psychtoolbox-3-common 3.0.11.20131230.dfsg1-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
43
44
45
46
47
48
function rc = IsMinimumOSXVersion(major, minor, point)
% rc = IsMinimumOSXVersion(major, minor, point);
%
% Checks if the script is running on a MacOS/X system with at least the
% requested (major,minor,point) version, e.g., to test for a MacOS/X system
% of 10.4.8 or later, do a IsMinimumOSXVersion(10,4,8);
%
% rc is 0 if the system is of a lower version, 1 if it satisfies this
% minimum version, 2 if the function doesn't know.

% History:
% 11/26/2007 Written (MK), based on code by Roger Woods (UCLA).
% 05/28/2012 Fixed this bullshit (MK).

if ~IsOSX
    rc = 0;
    return;
end

gestaltbits=Gestalt('sys1');
majorversion=bin2dec(char(49*gestaltbits+48*~gestaltbits));

% Preinit to 'No':
rc = 0;

if majorversion >= major
    if majorversion > major
        rc = 1;
        return;
    end
    
    gestaltbits=Gestalt('sys2');
    minorversion=bin2dec(char(49*gestaltbits+48*~gestaltbits));
    if minorversion >= minor
        if minorversion > minor
            rc = 1;
            return;
        end

        gestaltbits = Gestalt('sys3');
        pointversion=bin2dec(char(49*gestaltbits+48*~gestaltbits));
        if pointversion >= point
            rc = 1;
        end
    end
end

return;