diff options
Diffstat (limited to 'loader.sce')
-rw-r--r-- | loader.sce | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/loader.sce b/loader.sce deleted file mode 100644 index 328a320..0000000 --- a/loader.sce +++ /dev/null @@ -1,20 +0,0 @@ -// This file is released under the 3-clause BSD license. See COPYING-BSD. -// Generated by builder.sce: Please, do not edit this file - -oldmode = mode(); mode(-1); -oldlines = lines()(2); lines(0); -try - exec(get_absolute_file_path("loader.sce")+"etc/"+"FOSSEE_Signal_Processing_Toolbox.start"); -catch - [errmsg, tmp, nline, func] = lasterror() - msg = "%s: error on line #%d: ""%s""\n" - msg = msprintf(msg, func, nline, errmsg) - lines(oldlines) - mode(oldmode); - clear oldlines oldmode tmp nline func - error(msg); -end -lines(oldlines); -mode(oldmode); -clear oldlines oldmode; - |