aboutsummaryrefslogblamecommitdiff
path: root/tests/test-rpc_server.c
blob: 6eff7558bcdc25ee75f83a1d757c7f6e6f6214cb (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                    
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <assert.h>

#include <hal.h>
#include <hal_internal.h>

int main (int argc, char *argv[])
{
    if (rpc_server_init() != HAL_OK)
	return 1;

    rpc_server_main();
    return 0;
}