diff options
author | jacopo grandi <jak.sk8@hotmail.it> | 2021-03-02 09:44:19 +0100 |
---|---|---|
committer | jacopo grandi <jak.sk8@hotmail.it> | 2021-03-02 09:44:19 +0100 |
commit | 879fb2adefadbc5f38711cd8f01bcc4cee053e3d (patch) | |
tree | 63d9841f0dd321978714dd5839cb6f8c3c8df57e /umath | |
parent | 2f345b1d6e130177efe4fa47d5b2bd11f352ce85 (diff) |
i hate cmake, g++, ld, collect2, cc1, x86_64-w64-mingw32
Diffstat (limited to 'umath')
-rw-r--r-- | umath/intersect.c | 2 | ||||
-rw-r--r-- | umath/vec.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/umath/intersect.c b/umath/intersect.c index 2d21389..582c851 100644 --- a/umath/intersect.c +++ b/umath/intersect.c @@ -1,4 +1,4 @@ -#include <intersect.h> +#include "intersect.h" int pt_rect (float p[], float a[], float b[]) { if (p[0]>a[0] && p[0]<a[0]+b[0] && p[1]>a[1] && p[1]<a[1]+b[1]) diff --git a/umath/vec.c b/umath/vec.c index fe82f58..45bb4e8 100644 --- a/umath/vec.c +++ b/umath/vec.c @@ -1,4 +1,4 @@ -#include <vec.h> +#include "vec.h" float vec2_add (float c[], float a[], float b[]) { c[0]=a[0]+b[0]; c[1]=a[1]+b[1]; |