blob: a361b6c5df13f350672b78a3dde3b8d1f1a50525 [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// +build darwin
package serial
import (
"errors"
"os"
)
func open(name string, baudRate int, timeoutSecs int) (*os.File, error) {
return nil, errors.New("not supported")
}