Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion barretenberg/cpp/src/barretenberg/wasi/wasi_stubs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,8 @@ int32_t __imported_wasi_snapshot_preview1_fd_renumber(int32_t, int32_t)

int32_t __imported_wasi_snapshot_preview1_fd_tell(int32_t, uint64_t*)
{
info("fd_tell stubbed.");
info("fd_tell not implemented.");
abort();
return 0;
}

Expand Down Expand Up @@ -200,6 +201,8 @@ int32_t __imported_wasi_snapshot_preview1_fd_prestat_dir_name(int32_t, int32_t,

int32_t __imported_wasi_snapshot_preview1_path_filestat_get(int32_t, int32_t, int32_t, int32_t, int32_t)
{
info("path_filestat_get not implemented.");
abort();
return 0;
}

Expand Down
Loading