Skip to content

Commit 535901d

Browse files
author
Jens Frenkel
committed
- bugfix linker realRand, intRand
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@11923 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
1 parent 6cf9f7c commit 535901d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Compiler/Util/System.mo

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -919,7 +919,7 @@ public function realRand
919919
"Returns a value in the intervals (0,1]"
920920
output Real r;
921921

922-
external "C" r = SystemImpl_realRand();
922+
external "C" r = SystemImpl__realRand();
923923
end realRand;
924924

925925
public function intRand
@@ -928,7 +928,7 @@ public function intRand
928928
input Integer n;
929929
output Integer i;
930930

931-
external "C" i = SystemImpl_intRand(n);
931+
external "C" i = SystemImpl__intRand(n);
932932
end intRand;
933933

934934
end System;

0 commit comments

Comments
 (0)