mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-06-14 19:11:04 +00:00
d2f76b645f
Signed-off-by: xermicus <cyrill@parity.io>
17 lines
223 B
C
17 lines
223 B
C
#include <stdbool.h>
|
|
|
|
#include "polkavm_guest.h"
|
|
|
|
extern void __entry(bool);
|
|
|
|
static void deploy() {
|
|
__entry(true);
|
|
}
|
|
|
|
static void call() {
|
|
__entry(false);
|
|
}
|
|
|
|
POLKAVM_EXPORT(void, deploy)
|
|
POLKAVM_EXPORT(void, call)
|