diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-21 11:21:33 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-21 11:21:33 -0700 |
commit | b2c007186786c39693d42d18a1e491aa2e7defce (patch) | |
tree | f16f205c3ac0e22b6a86f7d807ac549f9fac712b /commit.c | |
parent | bb233d690a9782e1570dc93ead2bf04aaca7cfe4 (diff) | |
download | git-b2c007186786c39693d42d18a1e491aa2e7defce.tar.gz git-b2c007186786c39693d42d18a1e491aa2e7defce.tar.xz |
Include <limits.h> in commit.c for ULONG_MAX. Remove old "revision.h".
The old revision.h helper header isn't used any more, but I never noticed
it until I started grepping for ULONG_MAX users.
Diffstat (limited to 'commit.c')
-rw-r--r-- | commit.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1,6 +1,7 @@ #include "commit.h" #include "cache.h" #include <string.h> +#include <limits.h> const char *commit_type = "commit"; |