Fix includes using iwyu tool

These changes are done by running iwyu manually under clang14.

IWYU can increase readability, make maintenance easier, and avoid errors
in some cases. See details in
```
https: //github.com/include-what-you-use/include-what-you-use/blob/master/docs/WhyIWYU.md.
```
Signed-off-by: Manojkiran Eda <manojkiran.eda@gmail.com>
Change-Id: Idaaeffd78c9ad7db2b41a057d40f889ade297c55
diff --git a/src/bios.c b/src/bios.c
index 8d93a6a..d9c4c3e 100644
--- a/src/bios.c
+++ b/src/bios.c
@@ -1,7 +1,7 @@
 #include "bios.h"
+#include "base.h"
 #include "utils.h"
 #include <endian.h>
-#include <stdbool.h>
 #include <string.h>
 
 int encode_get_date_time_req(uint8_t instance_id, struct pldm_msg *msg)