Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/map.h
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2010-12-23 01:44:41 +0300
committerVicent Marti <tanoku@gmail.com>2010-12-23 01:44:41 +0300
commite035685f272579a8620741aaad521540712c0725 (patch)
tree2a4fec1eece77df75aca4b1b54e96c286af5ddd6 /src/map.h
parente7379f338474fad9318faffe5d0b6000ff3e1b30 (diff)
Revert "Properly export all external symbols in Win32"
It is not a good idea to export these internal symbols now that they are not required to run the unit tests. Signed-off-by: Vicent Marti <tanoku@gmail.com>
Diffstat (limited to 'src/map.h')
-rw-r--r--src/map.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map.h b/src/map.h
index 2388bb345..3188ffdbb 100644
--- a/src/map.h
+++ b/src/map.h
@@ -25,7 +25,7 @@ typedef struct { /* memory mapped buffer */
#endif
} git_map;
-GIT_EXTERN(int) git__mmap(git_map *out, size_t len, int prot, int flags, int fd, off_t offset);
-GIT_EXTERN(int) git__munmap(git_map *map);
+extern int git__mmap(git_map *out, size_t len, int prot, int flags, int fd, off_t offset);
+extern int git__munmap(git_map *map);
#endif /* INCLUDE_map_h__ */