diff options
Diffstat (limited to 'osdep.c')
-rw-r--r-- | osdep.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -107,6 +107,11 @@ int qemu_open(const char *name, int flags, ...) return ret; } +int qemu_close(int fd) +{ + return close(fd); +} + /* * A variant of write(2) which handles partial write. * |