diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2022-06-29 18:21:58 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2022-07-08 19:17:35 +0200 |
commit | e6a19ba1a05f77f051187a6b1a828ee6d39ce052 (patch) | |
tree | c8a1566b10883edbe4a8bc9a724461f4003aaa10 /tests/libtar/tar_sparse.c | |
parent | 359d71e90050a8b83f7bc7d2ecd4ff29c477cc22 (diff) |
Cleanup: split libtar header, move to sub directory
Some of the on-disk format internals are moved to a separate header
and some of the stuff from internal.h is moved to that format header.
C++ guards are added in addtion.
Everything PAX related is moved to pax_header.c, some internal
functions are marked as static.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'tests/libtar/tar_sparse.c')
-rw-r--r-- | tests/libtar/tar_sparse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/libtar/tar_sparse.c b/tests/libtar/tar_sparse.c index d868c80..305e5e7 100644 --- a/tests/libtar/tar_sparse.c +++ b/tests/libtar/tar_sparse.c @@ -6,7 +6,7 @@ */ #include "config.h" #include "io/file.h" -#include "tar.h" +#include "tar/tar.h" #include "../test.h" static void test_case_sparse(const char *path) |