From aeabed3afb1d9a467c7a29db592719329b4ba090 Mon Sep 17 00:00:00 2001 From: Shivam Chaudhary Date: Wed, 1 Feb 2023 21:10:51 +0100 Subject: [PATCH] Add missing headers for newly added functions --- src/withdrawMoney.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/withdrawMoney.h b/src/withdrawMoney.h index 9554a66..f86e618 100644 --- a/src/withdrawMoney.h +++ b/src/withdrawMoney.h @@ -1,4 +1,6 @@ #include +#include void withdraw(int user_id); -void initiateWithdraw(float amountToWithdraw, float availableAccountBalance); \ No newline at end of file +float initiateWithdraw(float amountToWithdraw, float availableAccountBalance); +void notifyCustomer(amountToWithdraw, remainingAccountBalance); \ No newline at end of file