aboutsummaryrefslogtreecommitdiff
path: root/include/bh/internal/file_posix.h
blob: e041e6153eb74a615be8a94cba15d4092fd99470 (plain)
1
2
3
4
5
6
7
8
9
#include <unistd.h>

struct bh_file_s
{
    bh_io_t base;
    char *path;
    int mode;
    int handle;
};