Delete maths.c

static inlines shouldn't need an external definition if I understand correctly, and that's all this file contains
This commit is contained in:
2022-11-16 01:45:25 +11:00
parent 1479433500
commit 30cd5911a5
2 changed files with 1 additions and 7 deletions

View File

@ -3,7 +3,7 @@ project(padlab C)
set(CMAKE_C_STANDARD 99) set(CMAKE_C_STANDARD 99)
set(TARGET padlab) set(TARGET padlab)
set(SOURCES set(SOURCES
maths.c maths.h maths.h
draw.c draw.h draw.c draw.h
stick.c stick.h stick.c stick.h
analogue.c) analogue.c)

View File

@ -1,6 +0,0 @@
#include "maths.h"
static inline vector VecAdd(vector l, vector r);
static inline vector VecScale(vector v, vec_t x);
static inline double pfmod(double x, double d);