diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-09-15 18:07:47 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-09-15 18:07:47 +0200 |
commit | 129e1758a5e2cf851f042e139fdd808a9be9ce94 (patch) | |
tree | 2d94d2135446afe659e94f57103d2e2eab26389c /include/util.h | |
parent | 8ee3ee9c71418dbdb73d4350c17056024fb7ec41 (diff) |
Move sparse_map_t to libsquashfs headers, rename it to sqfs_sparse_map_t
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'include/util.h')
-rw-r--r-- | include/util.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/util.h b/include/util.h index fb927b5..5fb5f9b 100644 --- a/include/util.h +++ b/include/util.h @@ -39,14 +39,6 @@ #error Cannot determine maximum value of size_t #endif - -/* layout structure for sparse files, indicating where the actual data is */ -typedef struct sparse_map_t { - struct sparse_map_t *next; - uint64_t offset; - uint64_t count; -} sparse_map_t; - /* A wrapper around the write() system call. It retries the write if it is interrupted by a signal or only part of the data was written. Returns 0 |