1234567891011121314151617181920212223 |
- /*
- * Copyright (c) 2019 Actions Semi Co., Inc.
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- /* empty impl for wxpay */
- #ifndef __UVISION_VERSION
- #include <stdio.h>
- long ftell(FILE *fp)
- {
- return 0;
- }
- int fseek(FILE *fp, long offset, int whence)
- {
- return 0;
- }
- #endif
|