From 7cacd94aa6b454ba098e7dafe2ca82c1f28bd239 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 27 Jun 2017 10:16:28 +0200 Subject: vm/vmimpl: fix linux/ppc64le build --- vm/vmimpl/linux.go | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 vm/vmimpl/linux.go (limited to 'vm/vmimpl/linux.go') diff --git a/vm/vmimpl/linux.go b/vm/vmimpl/linux.go deleted file mode 100644 index 19e052076..000000000 --- a/vm/vmimpl/linux.go +++ /dev/null @@ -1,17 +0,0 @@ -// Copyright 2017 syzkaller project authors. All rights reserved. -// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. - -// +build linux - -package vmimpl - -import ( - "golang.org/x/sys/unix" -) - -const ( - unix_CBAUD = unix.CBAUD - unix_CRTSCTS = unix.CRTSCTS - syscall_TCGETS = unix.TCGETS2 - syscall_TCSETS = unix.TCSETS2 -) -- cgit mrf-deployment