summaryrefslogtreecommitdiff
path: root/src/dir.h
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2010-12-23 00:44:41 +0200
committerVicent Marti <tanoku@gmail.com>2010-12-23 00:44:41 +0200
commite035685f272579a8620741aaad521540712c0725 (patch)
tree2a4fec1eece77df75aca4b1b54e96c286af5ddd6 /src/dir.h
parente7379f338474fad9318faffe5d0b6000ff3e1b30 (diff)
downloadlibgit2-e035685f272579a8620741aaad521540712c0725.tar.gz
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/dir.h')
-rw-r--r--src/dir.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dir.h b/src/dir.h
index bb77d3596..c01c3fae7 100644
--- a/src/dir.h
+++ b/src/dir.h
@@ -22,10 +22,10 @@ typedef struct {
int first;
} git__DIR;
-GIT_EXTERN(git__DIR *) git__opendir(const char *);
-GIT_EXTERN(struct git__dirent *) git__readdir(git__DIR *);
-GIT_EXTERN(void) git__rewinddir(git__DIR *);
-GIT_EXTERN(int) git__closedir(git__DIR *);
+extern git__DIR *git__opendir(const char *);
+extern struct git__dirent *git__readdir(git__DIR *);
+extern void git__rewinddir(git__DIR *);
+extern int git__closedir(git__DIR *);
# ifndef GIT__WIN32_NO_WRAP_DIR
# define dirent git__dirent