Skip to content

Commit

Permalink
libvmm: missing include in DTB header
Browse files Browse the repository at this point in the history
`stdbool.h` is technically missing, it's already included by users
of `dtb.h` which is why we have not seen a compiler error for it yet.
But, better to fix this now than later.
  • Loading branch information
Ivan-Velickovic committed Oct 3, 2023
1 parent 4cb9a1c commit 2e164c6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/dtb.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

#pragma once

#include <stdbool.h>
#include <stdint.h>

/*
Expand Down

0 comments on commit 2e164c6

Please sign in to comment.