[lib][bcache] add C++ header guards

This commit is contained in:
Travis Geiselbrecht
2022-04-18 22:24:02 -07:00
parent c7bef34590
commit fdb027fe7b
3 changed files with 4 additions and 0 deletions

View File

@@ -8,6 +8,9 @@
#pragma once
#include <lib/bio.h>
#include <lk/compiler.h>
__BEGIN_CDECLS
typedef void *bcache_t;
@@ -24,3 +27,4 @@ int bcache_zero_block(bcache_t priv, uint blocknum);
int bcache_flush(bcache_t priv);
void bcache_dump(bcache_t priv, const char *name);
__END_CDECLS