Commit 0a347f72 authored by Wez's avatar Wez Committed by Commit Bot

Don't #include <sys/syscall.h> under Fuchsia, which doesn't provide it.

Previous Fuchsia SDK versions provide an empty header file, for
convenience, but this is no longer the case.

Change-Id: Ica8d23cc38664b3ebe7093606da4c669d6043c73
Reviewed-on: https://chromium-review.googlesource.com/571763Reviewed-by: 's avatarAdam Klein <adamk@chromium.org>
Commit-Queue: Wez <wez@chromium.org>
Cr-Commit-Position: refs/heads/master@{#46688}
parent 08965860
...@@ -57,7 +57,7 @@ ...@@ -57,7 +57,7 @@
#include <sys/prctl.h> // NOLINT, for prctl #include <sys/prctl.h> // NOLINT, for prctl
#endif #endif
#ifndef _AIX #if !defined(_AIX) && !defined(V8_OS_FUCHSIA)
#include <sys/syscall.h> #include <sys/syscall.h>
#endif #endif
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
#include <signal.h> #include <signal.h>
#include <sys/time.h> #include <sys/time.h>
#if !V8_OS_QNX && !V8_OS_AIX #if !V8_OS_QNX && !V8_OS_FUCHSIA && !V8_OS_AIX
#include <sys/syscall.h> // NOLINT #include <sys/syscall.h> // NOLINT
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment