libc_stdio.c 275 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright (c) 2019 Actions Semi Co., Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /* empty impl for wxpay */
  7. #ifndef __UVISION_VERSION
  8. #include <stdio.h>
  9. long ftell(FILE *fp)
  10. {
  11. return 0;
  12. }
  13. int fseek(FILE *fp, long offset, int whence)
  14. {
  15. return 0;
  16. }
  17. #endif