summary refs log tree commit diff stats
path: root/nim/osproc.pas
diff options
context:
space:
mode:
Diffstat (limited to 'nim/osproc.pas')
-rwxr-xr-xnim/osproc.pas30
1 files changed, 0 insertions, 30 deletions
diff --git a/nim/osproc.pas b/nim/osproc.pas
deleted file mode 100755
index dd6bd10f0..000000000
--- a/nim/osproc.pas
+++ /dev/null
@@ -1,30 +0,0 @@
-//

-//

-//           The Nimrod Compiler

-//        (c) Copyright 2009 Andreas Rumpf

-//

-//    See the file "copying.txt", included in this

-//    distribution, for details about the copyright.

-//

-unit osproc;

-

-// This module provides Nimrod's osproc module in Pascal

-// Note: Only implement what is really needed here!

-

-interface

-

-{$include 'config.inc'}

-

-uses

-  nsystem, nos;

-

-function executeCommand(const cmd: string): int;

-

-implementation

-

-function executeCommand(const cmd: string): int;

-begin

-  result := executeShellCommand(cmd);

-end;

-

-end.