/* * Copyright (c) 2025 Croxel Inc. * Copyright (c) 2025 CogniPilot Foundation * * SPDX-License-Identifier: Apache-2.0 */ #include #include #include status_t print(const char *fmt_s, ...) { va_list args; va_start(args, fmt_s); vprintk(fmt_s, args); va_end(args); return STATUS_OK; }