diff options
Diffstat (limited to 'lib/nimrtl.nim')
-rw-r--r-- | lib/nimrtl.nim | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/lib/nimrtl.nim b/lib/nimrtl.nim index 4e4cf7e0e..a2fb6ce60 100644 --- a/lib/nimrtl.nim +++ b/lib/nimrtl.nim @@ -1,3 +1,7 @@ +discard """ +batchable: false +""" + # # # Nim's Runtime Library @@ -8,7 +12,7 @@ # ## Main file to generate a DLL from the standard library. -## The default Nimrtl does not only contain the ``system`` module, but these +## The default Nimrtl does not only contain the `system` module, but these ## too: ## ## * parseutils @@ -22,6 +26,7 @@ ## * unicode ## * pegs ## * ropes +## * cstrutils ## when system.appType != "lib": @@ -31,6 +36,5 @@ when not defined(createNimRtl): {.error: "This file has to be compiled with '-d:createNimRtl'".} import - parseutils, strutils, parseopt, parsecfg, strtabs, unicode, pegs, ropes, - os, osproc, times - + std/[parseutils, strutils, parseopt, parsecfg, strtabs, unicode, pegs, ropes, + os, osproc, times, cstrutils] |