Skip to content

Commit

Permalink
Use ftello explicitly instead of ftell. (iree-org#14577)
Browse files Browse the repository at this point in the history
Untested but may help iree-org#14571.
  • Loading branch information
benvanik authored and nhasabni committed Aug 24, 2023
1 parent b09604b commit c9bcbd5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/src/iree/base/internal/file_io.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@

#define IREE_SET_BINARY_MODE(handle) ((void)0)

#define iree_fseek64 fseek
#define iree_ftell64 ftell
#define iree_fseek64 fseeko
#define iree_ftell64 ftello

#endif // IREE_PLATFORM_WINDOWS

Expand Down

0 comments on commit c9bcbd5

Please sign in to comment.