From 8cb7d3dcfcbe11a6d5682743816409d1c8e8f6a0 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 20 Sep 2017 21:18:36 +0200 Subject: all: initial support for fuchsia Nothing works, but builds. Update #191 --- executor/executor_fuchsia.cc | 3 +++ 1 file changed, 3 insertions(+) (limited to 'executor/executor_fuchsia.cc') diff --git a/executor/executor_fuchsia.cc b/executor/executor_fuchsia.cc index 6a312167b..3a214e4ac 100644 --- a/executor/executor_fuchsia.cc +++ b/executor/executor_fuchsia.cc @@ -3,7 +3,10 @@ // +build +#include "syscalls_fuchsia.h" + int main() { + (void)syscalls; return 0; } -- cgit mrf-deployment