Skip to content

Commit abb70f3

Browse files
committed
fram
1 parent ed8fd1e commit abb70f3

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

+stdlib/ram_free.m

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020

2121
function bytes = ram_free()
2222

23+
bytes = 0;
24+
2325
if stdlib.has_java()
2426
bytes = ram_free_java();
2527
elseif stdlib.has_python()

+stdlib/ram_total.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
function bytes = ram_total()
1010

11+
bytes = 0;
1112

1213
if stdlib.dotnet_api() >= 6
1314
% .NET is 2-3x faster than Java for this

0 commit comments

Comments
 (0)