summaryrefslogtreecommitdiff
path: root/compat/mmap.c
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-12-05 19:54:29 (GMT)
committerJunio C Hamano <junkio@cox.net>2005-12-05 23:50:29 (GMT)
commit4050c0df8ec7043315e2192695de432875239775 (patch)
tree36ea762082320aae037a95157c6c7f0ffc383046 /compat/mmap.c
parentcd8c4589473d2a6669cf882ebcd708a2d81e9168 (diff)
downloadgit-4050c0df8ec7043315e2192695de432875239775.zip
git-4050c0df8ec7043315e2192695de432875239775.tar.gz
git-4050c0df8ec7043315e2192695de432875239775.tar.bz2
Clean up compatibility definitions.
This attempts to clean up the way various compatibility functions are defined and used. - A new header file, git-compat-util.h, is introduced. This looks at various NO_XXX and does necessary function name replacements, equivalent of -Dstrcasestr=gitstrcasestr in the Makefile. - Those function name replacements are removed from the Makefile. - Common features such as usage(), die(), xmalloc() are moved from cache.h to git-compat-util.h; cache.h includes git-compat-util.h itself. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'compat/mmap.c')
-rw-r--r--compat/mmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/mmap.c b/compat/mmap.c
index a051c47..55cb120 100644
--- a/compat/mmap.c
+++ b/compat/mmap.c
@@ -2,7 +2,7 @@
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
-#include "../cache.h"
+#include "../git-compat-util.h"
void *gitfakemmap(void *start, size_t length, int prot , int flags, int fd, off_t offset)
{