From: Michael Orlitzky Date: Thu, 16 Apr 2015 01:15:03 +0000 (-0400) Subject: Define an export list in ExitCodes. X-Git-Tag: 0.0.1~15 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=spline3.git;a=commitdiff_plain;h=0894d1dfe192819e9c9a82cc5ed991230674772c Define an export list in ExitCodes. --- diff --git a/src/ExitCodes.hs b/src/ExitCodes.hs index 47cd15c..bb3c5c7 100644 --- a/src/ExitCodes.hs +++ b/src/ExitCodes.hs @@ -1,5 +1,9 @@ -- | All failure exit codes that the program can return. -module ExitCodes +-- +module ExitCodes ( + exit_arg_parse_failed, + exit_arg_not_positive, + exit_arg_out_of_bounds ) where -- | Indicates that the command-line arguments could not be parsed.