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