diff options
author | rodri <rgl@antares-labs.eu> | 2023-12-27 12:58:20 +0000 |
---|---|---|
committer | rodri <rgl@antares-labs.eu> | 2023-12-27 12:58:20 +0000 |
commit | 9afe489f2612d54d4ecf21cf426f908d7140992a (patch) | |
tree | e5d64434d9b8e586fdec1033608bda29c374a0d4 /util.c | |
parent | b34446e7025a15bd5b74fd5f88bb952028cc8a4a (diff) | |
download | tinyrend-9afe489f2612d54d4ecf21cf426f908d7140992a.tar.gz tinyrend-9afe489f2612d54d4ecf21cf426f908d7140992a.tar.bz2 tinyrend-9afe489f2612d54d4ecf21cf426f908d7140992a.zip |
got rid of unused procedures.
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 20 |
1 files changed, 0 insertions, 20 deletions
@@ -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; |