diff options
Diffstat (limited to 't/helper/test-sha1.c')
-rw-r--r-- | t/helper/test-sha1.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/t/helper/test-sha1.c b/t/helper/test-sha1.c new file mode 100644 index 000000000000..d860c387c384 --- /dev/null +++ b/t/helper/test-sha1.c @@ -0,0 +1,7 @@ +#include "test-tool.h" +#include "cache.h" + +int cmd__sha1(int ac, const char **av) +{ + return cmd_hash_impl(ac, av, GIT_HASH_SHA1); +} |