Adding upstream version 3.61.
[syslinux-debian/hramrach.git] / com32 / include / syslinux / loadfile.h
blobfbda589da53c8b5ad47ebfb1b8c9a654c5e5722d
1 #ifndef LIBUTIL_LOADFILE_H
2 #define LIBUTIL_LOADFILE_H
4 #include <stddef.h>
6 /* loadfile() returns the true size of the file, but will guarantee valid,
7 zero-padded memory out to this boundary. */
8 #define LOADFILE_ZERO_PAD 64
10 int loadfile(const char *, void **, size_t *);
12 #endif