blob: 28848b805848a0b7ed746d61bd360b0060f61337 [file]
// Copyright 2026 The Fuchsia Authors
//
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT
#![no_std]
#[cfg(not(gcc))]
mod enabled;
// TODO(https://fxbug.dev/529516970): Tracing macros expand to no-ops when compiling the kernel with
// GCC to prevent unresolved symbol references and link errors.
#[cfg(gcc)]
mod disabled;