blob: 927c4a3000dfe4f7ab4d7e3d16d726d1622e003e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// =============================================================================
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) 2011 - DIGITEO - Sylvestre LEDRU
//
// This file is distributed under the same license as the Scilab package.
// =============================================================================
ierr = execstr('a = javaclasspath(2);','errcatch');
if ierr <> 999 then bugmes();quit;end
result = javaclasspath();
if size(result,"*") < 1 then bugmes();quit;end
// Does not return anything
ierr = execstr('javaclasspath(TMPDIR);;','errcatch');
if ierr <> 0 then bugmes();quit;end
|