23 lines
543 B
C
23 lines
543 B
C
#ifndef IO_BUILTIN_H_a9dd5b4902aa45e05dcf2b0fdb33ec74
|
|
#define IO_BUILTIN_H_a9dd5b4902aa45e05dcf2b0fdb33ec74
|
|
|
|
#include <inttypes.h>
|
|
#include <stdbool.h>
|
|
|
|
#define BI_IO_POSIX_OPEN "posix-open"
|
|
#define BI_IO_POSIX_OPENAT "posix-openat"
|
|
|
|
#define BI_IO_POSIX_DUP "posix-dup"
|
|
#define BI_IO_POSIX_DUP2 "posix-dup2"
|
|
|
|
#define BI_IO_POSIX_READ "posix-read"
|
|
#define BI_IO_POSIX_WRITE "posix-write"
|
|
#define BI_IO_POSIX_LSEEK "posix-lseek"
|
|
|
|
#define BI_IO_POSIX_CLOSE "posix-close"
|
|
|
|
void mod_io_init(void);
|
|
|
|
#endif
|
|
/* vim:set sw=2 expandtab: */
|