summaryrefslogtreecommitdiff
path: root/linkers/libc-heap.ini
blob: bb7589a3616ee0bddbdc7039586c9bcf1f91c7f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
;
; RTEMS C Library Trace Configurations
;
[libc-heap]
headers = libc-heap-headers
defines = libc-heap-defines
signatures = libc-heap-signatures

[libc-heap-all]
trace = malloc
trace = calloc
trace = realloc
trace = free

[libc-heap-headers]
header = "#include <stdlib.h>"

[libc-heap-defines]
; Currently empty

[libc-heap-signatures]
malloc = void*, size_t
calloc = void*, size_t, size_t
realloc = void*, void*, size_t
free = void, void*