From c455bf1c82deaf922180feca63a4a612d19ee411 Mon Sep 17 00:00:00 2001 From: Leon Wolf Date: Thu, 8 Feb 2024 18:33:42 +0100 Subject: [PATCH] arithmetic Subtraction specification --- src/arithmeticSubtraction.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arithmeticSubtraction.c b/src/arithmeticSubtraction.c index ed12a2b..e36089c 100644 --- a/src/arithmeticSubtraction.c +++ b/src/arithmeticSubtraction.c @@ -2,7 +2,7 @@ #include "arithmeticSubtraction.h" #include -//arithmetic Subtraction specification +//arithmetic Subtraction specification integer int* subtraction_integer(int a, int b) { int* result= malloc(sizeof (int)); *result=a - b;