aboutsummaryrefslogtreecommitdiff
path: root/src/lib/malloc.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/malloc.go')
-rw-r--r--src/lib/malloc.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/malloc.go b/src/lib/malloc.go
index 3d3f420d05..e3896e94f2 100644
--- a/src/lib/malloc.go
+++ b/src/lib/malloc.go
@@ -8,12 +8,12 @@
package malloc
-export type Stats struct {
+type Stats struct {
Alloc uint64;
Sys uint64;
};
-export func Alloc(uint64) *byte;
-export func Free(*byte);
-export func GetStats() *Stats;
-export func Lookup(*byte) (*byte, uintptr);
+func Alloc(uint64) *byte;
+func Free(*byte);
+func GetStats() *Stats;
+func Lookup(*byte) (*byte, uintptr);