File: __internal_exit__.m

package info (click to toggle)
octave-parallel 4.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,648 kB
  • sloc: ansic: 24,011; cpp: 6,848; sh: 4,476; makefile: 297; perl: 170; xml: 22
file content (12 lines) | stat: -rw-r--r-- 274 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
## This code is in the public domain.

## -*- texinfo -*-
## @deftypefn {Function File} {} __internal_exit__ (@var{status})
## Wrapper for __exit__ for backwards compatibility.
## @end deftypefn

function __internal_exit__ (varargin)

  __exit__ (varargin{:});

endfunction