cbprintf_complete_brom.c 581 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Copyright (c) 1997-2010, 2012-2015 Wind River Systems, Inc.
  3. * Copyright (c) 2020 Nordic Semiconductor ASA
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. #include <ctype.h>
  8. #include <errno.h>
  9. #include <inttypes.h>
  10. #include <limits.h>
  11. #include <stdarg.h>
  12. #include <stdbool.h>
  13. #include <stddef.h>
  14. #include <stdint.h>
  15. #include <string.h>
  16. #include <toolchain.h>
  17. #include <sys/types.h>
  18. #include <sys/util.h>
  19. #include <sys/cbprintf.h>
  20. #include "soc.h"
  21. int cbvprintf(cbprintf_cb out, void *ctx, const char *fp, va_list ap)
  22. {
  23. return pbrom_libc_api->p_cbvprintf(out, ctx, fp, ap);
  24. }