David Gonzalez Martin 38011a233c Integrate libs
2024-03-02 12:58:12 -06:00

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