diff options
author | EuAndreh <eu@euandre.org> | 2021-08-07 01:55:14 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-08-07 01:55:14 -0300 |
commit | d6e20be32b9c2703ed30bf966bea076360e28c4e (patch) | |
tree | 18c25a4de4819436aff3a73eeb45f851839f4e40 /src/tar.c | |
parent | TODOs.md: Add #task-2e2ad57f-9c31-69d8-e3d9-2708c2b73403 (diff) | |
download | gistatic-d6e20be32b9c2703ed30bf966bea076360e28c4e.tar.gz gistatic-d6e20be32b9c2703ed30bf966bea076360e28c4e.tar.xz |
Add stub src/tar.c
Diffstat (limited to 'src/tar.c')
-rw-r--r-- | src/tar.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/tar.c b/src/tar.c new file mode 100644 index 0000000..ee94a7d --- /dev/null +++ b/src/tar.c @@ -0,0 +1,15 @@ +#ifdef TEST +#include <stdlib.h> +#endif + +#ifdef TEST +static void unit_tests() { +} +#endif + +#ifdef TEST +int main(void) { + unit_tests(); + return EXIT_SUCCESS; +} +#endif |