blob: 853bbc6a6e772e635aa832353950aa521342d0de (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#include "config.h"
#include "tar.h"
int tarball_write_from_directory(const char *const directory_path) {
(void)directory_path;
return 0;
}
#ifdef TEST
void unit_tests_tar(void) {}
#endif
|