Add missing includes of stdbool.h.

To ensure we aren't dependent on the order of inclusion.
This commit is contained in:
Martin Whitaker 2021-12-05 13:47:31 +00:00
parent 21e7c6fb49
commit 8f1d81b65d
6 changed files with 14 additions and 6 deletions

View File

@ -5,9 +5,11 @@
* Provides (macro) functions that implement the UI display.
* All knowledge about the display layout is encapsulated here.
*
* Copyright (C) 2020 Martin Whitaker.
* Copyright (C) 2020-2021 Martin Whitaker.
*/
#include <stdbool.h>
#include "screen.h"
#include "print.h"

View File

@ -4,9 +4,10 @@
/*
* Provides functions that can be called by the memory tests to report errors.
*
* Copyright (C) 2020 Martin Whitaker.
* Copyright (C) 2020-2021 Martin Whitaker.
*/
#include <stdbool.h>
#include <stdint.h>
#include "test.h"

View File

@ -4,9 +4,10 @@
/*
* Provides types and variables used when performing the memory tests.
*
* Copyright (C) 2020 Martin Whitaker.
* Copyright (C) 2020-2021 Martin Whitaker.
*/
#include <stdbool.h>
#include <stdint.h>
#include "pmem.h"

View File

@ -1,6 +1,7 @@
// SPDX-License-Identifier: GPL-2.0
// Copyright (C) 2020 Martin Whitaker.
// Copyright (C) 2020-2021 Martin Whitaker.
#include <stdbool.h>
#include <stdint.h>
#include "screen.h"

View File

@ -4,9 +4,10 @@
/*
* Provides support for multi-threaded operation.
*
* Copyright (C) 2020 Martin Whitaker.
* Copyright (C) 2020-2021 Martin Whitaker.
*/
#include <stdbool.h>
#include <stdint.h>
#include "boot.h"

View File

@ -5,9 +5,11 @@
* Provides the prototypes for the basic test functions used to implement
* the tests.
*
* Copyright (C) 2020 Martin Whitaker.
* Copyright (C) 2020-2021 Martin Whitaker.
*/
#include <stdbool.h>
#include "test.h"
int test_addr_walk1(int my_vcpu);