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