aboutsummaryrefslogtreecommitdiffstats
path: root/com32/libutil/include
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2007-03-15 16:57:43 -0700
committerH. Peter Anvin <hpa@zytor.com>2007-03-15 16:57:43 -0700
commitc5e9d7a496936b9ea553be6fef4dff74596bbf11 (patch)
tree2157f08931983c62850f657472b0b86d4ed39e7e /com32/libutil/include
parent77481cdf403e4170785fada5a44a0efcd2a357e4 (diff)
downloadsyslinux-c5e9d7a496936b9ea553be6fef4dff74596bbf11.tar.gz
syslinux-c5e9d7a496936b9ea553be6fef4dff74596bbf11.tar.xz
syslinux-c5e9d7a496936b9ea553be6fef4dff74596bbf11.zip
Library functions for manipulating initramfs
Library support for constructing initramfs. This version is *not* complete, as it doesn't take into account alignment requirements properly.
Diffstat (limited to 'com32/libutil/include')
-rw-r--r--com32/libutil/include/syslinux/loadfile.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/com32/libutil/include/syslinux/loadfile.h b/com32/libutil/include/syslinux/loadfile.h
deleted file mode 100644
index fbda589d..00000000
--- a/com32/libutil/include/syslinux/loadfile.h
+++ /dev/null
@@ -1,12 +0,0 @@
-#ifndef LIBUTIL_LOADFILE_H
-#define LIBUTIL_LOADFILE_H
-
-#include <stddef.h>
-
-/* loadfile() returns the true size of the file, but will guarantee valid,
- zero-padded memory out to this boundary. */
-#define LOADFILE_ZERO_PAD 64
-
-int loadfile(const char *, void **, size_t *);
-
-#endif