blob: 0594254c6965369ee4c1e6f73a64a544826b834e [file] [log] [blame]
// Copyright 2016 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.
#ifndef LIB_FXL_FUNCTIONAL_CLOSURE_H_
#define LIB_FXL_FUNCTIONAL_CLOSURE_H_
#include <functional>
#include <lib/fit/function.h>
namespace fxl {
typedef fit::function<void()> Closure;
} // namespace fxl
#endif // LIB_FXL_FUNCTIONAL_CLOSURE_H_