blob: a1e7c40c90394d55011388d9f2c08e9f03917fb7 [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.
library fuchsia_fakes;
import 'dart:io' as io;
import 'package:zircon/zircon.dart';
// ignore_for_file: public_member_api_docs
class MxStartupInfo {
static Handle takeEnvironment() => Handle.invalid();
static Handle takeOutgoingServices() => Handle.invalid();
}
void exit(int returnCode) {
io.exit(returnCode);
}