summaryrefslogtreecommitdiff
path: root/src/nbc/fail.sml
diff options
context:
space:
mode:
authorCalvin <calvin@EESI>2013-05-28 10:47:11 -0400
committerCalvin <calvin@EESI>2013-05-28 10:47:11 -0400
commitdd38d0d1dda2be42bf280aeca110542f2f2fef1b (patch)
treec921dc0690e29f1b7b913aaa72b9c12539faa5a1 /src/nbc/fail.sml
parent2f33e34ae06b96c3f3e4456ce960172903f60bfb (diff)
removed files
Diffstat (limited to 'src/nbc/fail.sml')
-rw-r--r--src/nbc/fail.sml10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/nbc/fail.sml b/src/nbc/fail.sml
deleted file mode 100644
index f3d324c..0000000
--- a/src/nbc/fail.sml
+++ /dev/null
@@ -1,10 +0,0 @@
-signature FAIL = sig
- val fail: string -> 'a
-end
-
-structure Fail :> FAIL = struct
- fun fail why = (
- TextIO.output (TextIO.stdErr, why ^ "\n")
- ; OS.Process.exit OS.Process.failure
- )
-end