Skip to content

Commit 8e22e6f

Browse files
committed
1 parent 42cefbe commit 8e22e6f

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

x86-semantics/semantics/common/library/common-c-library-configuration.k

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ module COMMON-C-LIBRARY-CONFIGURATION
1919
<open-files> .Set </open-files>
2020

2121
<files>
22-
<file multiplicity="*">
22+
//<file multiplicity="*">
23+
<file multiplicity="*" type="Map">
2324
<fid> .K </fid>
2425
<uri> .K </uri>
2526
<pos> 0 </pos>

x86-semantics/semantics/common/library/common-c-library-stdlib.k

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,10 @@ module COMMON-C-LIBRARY-STDLIB
2020

2121
rule stdlib_exit(I::Int) => exitExecution(I)
2222

23-
rule stdlib_abort ~> _
24-
=>
25-
writeFD(#stdout, "Aborted\n") ~> flush(#stdout) ~> asCInt(134)
23+
//rule stdlib_abort ~> _
24+
// =>
25+
// writeFD(#stdout, "Aborted\n") ~> flush(#stdout) ~> asCInt(134)
26+
rule <k> stdlib_abort ~> _ => writeFD(#stdout, "Aborted\n") ~> flush(#stdout) ~> asCInt(134) </k>
2627

2728
rule <k> stdlib_atexit(FP::VoidFunctionPointer) => success ...</k>
2829
<atexit> (.K => callExitHandler(FP)) ...</atexit>

0 commit comments

Comments
 (0)