summaryrefslogtreecommitdiff
path: root/src/alloc.c
diff options
context:
space:
mode:
authorPatrick Steinhardt <ps@pks.im>2019-02-21 12:13:59 +0100
committerPatrick Steinhardt <ps@pks.im>2019-02-21 12:28:02 +0100
commitb63396b75fe26afa3b27259c0d13dd7bc13b53ba (patch)
tree35feccd200b172e876d660b309bb216f4515df88 /src/alloc.c
parent9eb098d8614bdd0365140f6614441465123ce903 (diff)
downloadlibgit2-b63396b75fe26afa3b27259c0d13dd7bc13b53ba.tar.gz
allocators: move standard allocator into subdirectory
Right now, our two allocator implementations are scattered around the tree in "stdalloc.h" and "win32/w32_crtdbg_stacktrace.h". Start grouping them together in a single directory "allocators/", similar to how e.g. our streams are organized.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 8d4a19476..5ff41517b 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -10,7 +10,7 @@
#if defined(GIT_MSVC_CRTDBG)
# include "win32/w32_crtdbg_stacktrace.h"
#else
-# include "stdalloc.h"
+# include "allocators/stdalloc.h"
#endif
git_allocator git__allocator;