summaryrefslogtreecommitdiffstats
path: root/lib/libdvec/libdvec.lds
blob: 4f0fc4015d2300cdbdf2068bf33df2b0c05bea2f (plain) (blame)
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
26
27
28
29
LIBDVEC_1.1.4 {
	global:
		dvec_init;
		dvec_deinit;

		dvec_alloc;
		dvec_alloc_fused;
		dvec_free;

		dvec_copy;
		dvec_swap;

		dvec_clear;
		dvec_reserve;
		dvec_shrink;

		dvec_add;
		dvec_rm;
		dvec_replace;

		dvec_iter_fwd;
		dvec_iter_bwd;

		dvec_quick_sort;
		dvec_quick_sort_ex;

		dvec_binary_search;
	local: *;
};