mirror of
https://git.proxmox.com/git/wasi-libc
synced 2025-08-18 01:49:26 +00:00

* Make __wasi_linkcount_t a uint64_t (#134) Refs: https://github.com/WebAssembly/WASI/pull/127 * Generate the WASI interface from witx. This replaces the hand-maintained <wasi/core.h> header with a <wasi/api.h> generated from witx. Most of the churn here is caused by upstream WASI renamings; hopefully in the future ABI updates will be less noisy.
11 lines
193 B
C
11 lines
193 B
C
#ifndef __wasilibc___seek_h
|
|
#define __wasilibc___seek_h
|
|
|
|
#include <wasi/api.h>
|
|
|
|
#define SEEK_CUR __WASI_WHENCE_CUR
|
|
#define SEEK_END __WASI_WHENCE_END
|
|
#define SEEK_SET __WASI_WHENCE_SET
|
|
|
|
#endif
|