Add Makefile for OpenBSD

This commit is contained in:
2023-10-30 14:22:11 -07:00
parent 0b5a11ce8c
commit 42bc366e01
4 changed files with 45 additions and 2 deletions

View File

@ -75,4 +75,5 @@ Point *bresenham(int x0, int y0, int x1, int y1, size_t *sz) {
Point *bresenham_p(Point p1, Point p2, size_t *sz) {
return bresenham(p1.x, p1.y, p2.x, p2.y, sz);
}
}