diff options
author | Junio C Hamano <junkio@cox.net> | 2006-03-09 11:58:05 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-03-09 11:58:05 -0800 |
commit | b4f2a6ac9263d6e9bf3bf9c8abe607cd6def0ee8 (patch) | |
tree | 7956fa207bb2aa7eaee0290c2f8cbf11b1feaf6e /git-compat-util.h | |
parent | 7bd7f2804d84258a5cd1e76c610496f6beaa4cdf (diff) | |
download | git-b4f2a6ac9263d6e9bf3bf9c8abe607cd6def0ee8.tar.gz git-b4f2a6ac9263d6e9bf3bf9c8abe607cd6def0ee8.tar.xz |
Use #define ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0]))
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-compat-util.h')
-rw-r--r-- | git-compat-util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/git-compat-util.h b/git-compat-util.h index f982b8e48..5d543d29f 100644 --- a/git-compat-util.h +++ b/git-compat-util.h @@ -9,6 +9,8 @@ #endif #endif +#define ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0])) + #include <unistd.h> #include <stdio.h> #include <sys/stat.h> |