From 76a8c44727406a76d251102bdee607871887a119 Mon Sep 17 00:00:00 2001 From: Andreas Ericsson Date: Sat, 22 Nov 2008 14:42:12 +0100 Subject: [PATCH] Add internal common.h file This one pulls in compiler compatibility macros, some common header files, and also the public common.h header. C source files are modified to use the private common.h in favour of the public one. Signed-off-by: Andreas Ericsson Signed-off-by: Shawn O. Pearce --- src/common.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/common.h diff --git a/src/common.h b/src/common.h new file mode 100644 index 000000000..6624a3e24 --- /dev/null +++ b/src/common.h @@ -0,0 +1,11 @@ +#ifndef INCLUDE_common_h__ +#define INCLUDE_common_h__ + +#include "cc-compat.h" +#include +#include +#include +#include + +#include "git/common.h" +#endif /* INCLUDE_common_h__ */