diff options
| author | Vicent Marti <tanoku@gmail.com> | 2010-12-23 00:44:41 +0200 |
|---|---|---|
| committer | Vicent Marti <tanoku@gmail.com> | 2010-12-23 00:44:41 +0200 |
| commit | e035685f272579a8620741aaad521540712c0725 (patch) | |
| tree | 2a4fec1eece77df75aca4b1b54e96c286af5ddd6 /src/dir.h | |
| parent | e7379f338474fad9318faffe5d0b6000ff3e1b30 (diff) | |
| download | libgit2-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.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 |
