/usr/share/psychtoolbox-3/PsychOneliners/Is64Bit.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 | function rc = Is64Bit
% result = Is64Bit;
%
% Returns 1 (true) if the script is running inside a 64-Bit version of
% GNU/Octave or Matlab, 0 (false) otherwise.
%
% History:
% 3.09.2012 mk Written.
rc = IsLinux(1) || IsOSX(1) || IsWin(1);
return;
|