blob: 8ccf614e273264fcafb1bacb1657d84766c84fa7 [file] [log] [blame] [edit]
// Copyright 2019 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <base/at_exit.h>
namespace arc {
namespace {
__attribute__((constructor)) void CreateAtExitManager() {
static base::AtExitManager at_exit;
}
} // namespace
} // namespace arc