diff options
author | Junio C Hamano <junkio@cox.net> | 2006-09-15 22:47:21 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-09-15 22:47:21 -0700 |
commit | d0c2449f7805ee35b97c5dcb22845f157da1cea4 (patch) | |
tree | 3c13396d15949269f4aea75422b4eb2bc77b1342 /builtin.h | |
parent | 17fd965d215060a10911db99c2dacf9c3554787a (diff) | |
download | git-d0c2449f7805ee35b97c5dcb22845f157da1cea4.tar.gz |
Define fallback PATH_MAX on systems that do not define one in <limits.h>
Notably on GNU/Hurd, as reported by Gerrit Pape.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'builtin.h')
-rw-r--r-- | builtin.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,8 +1,7 @@ #ifndef BUILTIN_H #define BUILTIN_H -#include <stdio.h> -#include <limits.h> +#include "git-compat-util.h" extern const char git_version_string[]; extern const char git_usage_string[]; |