Skip to content
Snippets Groups Projects
Commit 69d846f0 authored by Jeff King's avatar Jeff King Committed by Junio C Hamano
Browse files

test-tool.h: include git-compat-util.h


The test-tool programs include "test-tool.h" as their first
include, which breaks our CodingGuideline of "the first
include must be git-compat-util.h or an equivalent".

Rather than change them all, let's instead make test-tool.h
one of those equivalents, just like we do for builtin.h
(which many of the actual git builtins include first).

Signed-off-by: default avatarJeff King <peff@peff.net>
Signed-off-by: default avatarJunio C Hamano <gitster@pobox.com>
parent 53f9a3e1
No related branches found
No related tags found
No related merge requests found
#ifndef __TEST_TOOL_H__
#define __TEST_TOOL_H__
 
#include "git-compat-util.h"
int cmd__chmtime(int argc, const char **argv);
int cmd__config(int argc, const char **argv);
int cmd__ctype(int argc, const char **argv);
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment