blob: 8b9582cdb0f47cf6eb6797cee3db07c972969407 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <stddef.h>
#include <unistd.h>
#include <osm/bind.h>
int main(int argc, char **argv)
{
int fd = osm_open_onboard(NULL);
if (fd >= 0)
{
close(fd);
}
return 0;
}
|