blob: 3df29519753825e0d92e0ac29ee60ee51a6e0387 (
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
|
/// @file
#ifndef U3_NOCK_V1_H
#define U3_NOCK_V1_H
#include "v2/nock.h"
/** Aliases.
**/
# define u3n_v1_memo u3n_v2_memo
# define u3n_v1_prog u3n_v2_prog
/** Functions.
**/
/* u3n_v1_reclaim(): clear ad-hoc persistent caches to reclaim memory.
*/
void
u3n_v1_reclaim(void);
/* u3n_v1_free(): free bytecode cache.
*/
void
u3n_v1_free(void);
#endif /* ifndef U3_NOCK_V1_H */
|