blob: 4c22cb11b18a7272f20b13791ba38926becee1a0 [file] [log] [blame]
// Copyright 2019 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.
library zx;
@transport("Syscall")
protocol Single {
/// This does a single thing.
DoThing(struct {
an_input int32;
}) -> (struct {
status status;
});
};