diff --git a/src/subtraktion.c b/src/subtraktion.c index 92cbf00..d4c4795 100644 --- a/src/subtraktion.c +++ b/src/subtraktion.c @@ -1,13 +1,9 @@ -#include "subtraktion.h" + #include #include //nimmt zwei Gleitkommazahlen entgegen und gibt Ergebnis der Subtraktion zurück -double sub(double zahl1, double zahl2) { + double subdouble(double zahl1, double zahl2) { return zahl1 - zahl2; } - -int main() { - return 0; -} \ No newline at end of file