diff options
author | Edward Thomson <ethomson@edwardthomson.com> | 2023-01-22 15:33:01 +0000 |
---|---|---|
committer | Edward Thomson <ethomson@edwardthomson.com> | 2023-02-09 12:10:40 +0000 |
commit | 9a9863645de0c750525a4119bbd3534e231d7360 (patch) | |
tree | 1538252431e7692376a450b03b3178dbe8aceffd /src/util/futils.c | |
parent | f02bcf721105d3dfb0a7d12dec2816b495451c45 (diff) | |
download | libgit2-9a9863645de0c750525a4119bbd3534e231d7360.tar.gz |
sysdir: move windows sysdir functions out of shared util
The windows sysdir functions are libgit2-specific and for git
compatibility only; remove them from the shared util directory and bring
them into the libgit2 source tree.
Diffstat (limited to 'src/util/futils.c')
-rw-r--r-- | src/util/futils.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/util/futils.c b/src/util/futils.c index cb872de09..084f1cd28 100644 --- a/src/util/futils.c +++ b/src/util/futils.c @@ -13,9 +13,6 @@ #include "rand.h" #include <ctype.h> -#if GIT_WIN32 -#include "win32/findfile.h" -#endif #define GIT_FILEMODE_DEFAULT 0100666 |