summaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2010-12-22 22:43:39 +0200
committerVicent Marti <tanoku@gmail.com>2010-12-22 22:43:39 +0200
commit2a18a792e3674b24f2d6312c039571c64f75dacd (patch)
tree9af7043ac4545e8d41c1f0b0898e0d22f201914e /src/util.h
parent0847dff5cd6522dbef29958cbafa7a56f409e82a (diff)
downloadlibgit2-2a18a792e3674b24f2d6312c039571c64f75dacd.tar.gz
Properly export all external symbols in Win32
Some external functions were not being exported because they were using the 'extern' keyword instead of the generic GIT_EXTERN() macro. Signed-off-by: Vicent Marti <tanoku@gmail.com>
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/util.h b/src/util.h
index 5f647253c..05f5a3443 100644
--- a/src/util.h
+++ b/src/util.h
@@ -3,9 +3,9 @@
#define ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0]))
-extern void *git__malloc(size_t);
-extern void *git__calloc(size_t, size_t);
-extern char *git__strdup(const char *);
+GIT_EXTERN(void *) git__malloc(size_t);
+GIT_EXTERN(void *) git__calloc(size_t, size_t);
+GIT_EXTERN(char *) git__strdup(const char *);
#ifndef GIT__NO_HIDE_MALLOC
# define GIT__FORBID_MALLOC do_not_use_malloc_directly
@@ -26,15 +26,15 @@ extern char *git__strdup(const char *);
# define strdup(a) GIT__FORBID_MALLOC
#endif
-extern int git__fmt(char *, size_t, const char *, ...)
+GIT_EXTERN(int) git__fmt(char *, size_t, const char *, ...)
GIT_FORMAT_PRINTF(3, 4);
-extern int git__prefixcmp(const char *str, const char *prefix);
-extern int git__suffixcmp(const char *str, const char *suffix);
+GIT_EXTERN(int) git__prefixcmp(const char *str, const char *prefix);
+GIT_EXTERN(int) git__suffixcmp(const char *str, const char *suffix);
-extern int git__dirname(char *dir, size_t n, char *path);
-extern int git__basename(char *base, size_t n, char *path);
+GIT_EXTERN(int) git__dirname(char *dir, size_t n, char *path);
+GIT_EXTERN(int) git__basename(char *base, size_t n, char *path);
-extern void git__hexdump(const char *buffer, size_t n);
+GIT_EXTERN(void) git__hexdump(const char *buffer, size_t n);
/** @return true if p fits into the range of a size_t */
GIT_INLINE(int) git__is_sizet(off_t p)