diff options
author | sanine <sanine.not@pm.me> | 2022-01-26 02:23:20 -0600 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2022-01-26 02:23:20 -0600 |
commit | 672819693ddf1d203c304697b63f44059cff09b6 (patch) | |
tree | 258319d46efa5297162bc1179b5c9c34bd3c23c7 /experimental/tectonics/util.c | |
parent | c5fae17327c585ec09ad01066e3f24a4e7be1fed (diff) |
refactor: move quadtree and util functions into separate headers and clean up names
Diffstat (limited to 'experimental/tectonics/util.c')
-rw-r--r-- | experimental/tectonics/util.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/experimental/tectonics/util.c b/experimental/tectonics/util.c index 991ebc6..0bbe880 100644 --- a/experimental/tectonics/util.c +++ b/experimental/tectonics/util.c @@ -1,6 +1,7 @@ #include <math.h> +#include <stdlib.h> -#include "tectonics.h" +#include "util.h" void get_cairo_size(cairo_t *cr, int *width, int *height) { |