aec7ddb4a2
Signed-off-by: Chloe M. <chloe@mensia.org>
18 lines
291 B
C
18 lines
291 B
C
/*
|
|
* Copyright (c) 2026, Chloe M.
|
|
* Provided under the BSD-3 clause.
|
|
*
|
|
* Description: Trace facility
|
|
* Author: Chloe M.
|
|
*/
|
|
|
|
#ifndef _EX_TRACE_H_
|
|
#define _EX_TRACE_H_ 1
|
|
|
|
#include <lib/printf.h>
|
|
|
|
#define TRACE printf
|
|
#define FmtPrintf vsnprintf
|
|
|
|
#endif /* !_EX_TRACE_H_ */
|