diff options
author | David Robillard <d@drobilla.net> | 2024-11-23 16:06:12 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-11-23 16:06:12 -0500 |
commit | 70a64605f7da52b463db610a5a42a5f4f749dda8 (patch) | |
tree | 9dbdbe27f02c5c380744abd90a0eaa884b4f51f6 /src/filesystem.c | |
parent | 8430cfd24c7b0b0e72ad7b97389de6edd188b735 (diff) | |
download | zix-70a64605f7da52b463db610a5a42a5f4f749dda8.tar.gz zix-70a64605f7da52b463db610a5a42a5f4f749dda8.tar.bz2 zix-70a64605f7da52b463db610a5a42a5f4f749dda8.zip |
Use angle brackets for library includes
Diffstat (limited to 'src/filesystem.c')
-rw-r--r-- | src/filesystem.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/filesystem.c b/src/filesystem.c index c6a1fa4..a142e32 100644 --- a/src/filesystem.c +++ b/src/filesystem.c @@ -1,13 +1,13 @@ // Copyright 2007-2022 David Robillard <d@drobilla.net> // SPDX-License-Identifier: ISC -#include "zix/filesystem.h" +#include <zix/filesystem.h> #include "path_iter.h" #include "system.h" -#include "zix/allocator.h" -#include "zix/status.h" +#include <zix/allocator.h> +#include <zix/status.h> #ifdef _WIN32 # include <direct.h> |