summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'util.c')
-rw-r--r--util.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/util.c b/util.c
index 89d47ad..b523cf8 100644
--- a/util.c
+++ b/util.c
@@ -45,26 +45,6 @@ swap(int *a, int *b)
}
void
-swappt2(Point2 *a, Point2 *b)
-{
- Point2 t;
-
- t = *a;
- *a = *b;
- *b = t;
-}
-
-void
-swappt3(Point3 *a, Point3 *b)
-{
- Point3 t;
-
- t = *a;
- *a = *b;
- *b = t;
-}
-
-void
memsetd(double *p, double v, usize len)
{
double *dp;