diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-03-02 12:02:45 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-03-02 12:02:45 -0800 |
commit | 5c0ce51b9623628c2816d5a90f8dbe878020e5e7 (patch) | |
tree | 150b90f0213e8222c65901a1aeecc322a9368296 | |
parent | dbfc8677d54259b66dbfa52dfdcb861abb301569 (diff) | |
download | syslinux-elf-syslinux-3.70-pre3.tar.gz syslinux-elf-syslinux-3.70-pre3.tar.xz syslinux-elf-syslinux-3.70-pre3.zip |
Add missing file <syslinux/zio.h>syslinux-3.70-pre3
This include file has been inadvertently omitted from previous
checkins.
-rw-r--r-- | com32/include/syslinux/zio.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/com32/include/syslinux/zio.h b/com32/include/syslinux/zio.h new file mode 100644 index 00000000..23991e50 --- /dev/null +++ b/com32/include/syslinux/zio.h @@ -0,0 +1,13 @@ +/* + * <syslinux/zio.h> + */ + +#ifndef _SYSLINUX_ZIO_H +#define _SYSLINUX_ZIO_H + +#include <stdio.h> + +int zopen(const char *, int, ...); +FILE *zfopen(const char *, const char *); + +#endif /* _SYSLINUX_ZIO_H */ |