1 #ifndef __wasilibc___seek_h
2 #define __wasilibc___seek_h
3 
4 #include <wasi/api.h>
5 
6 #define SEEK_CUR __WASI_WHENCE_CUR
7 #define SEEK_END __WASI_WHENCE_END
8 #define SEEK_SET __WASI_WHENCE_SET
9 
10 #endif
11