diff options
| author | Peter Jones <pjones@redhat.com> | 2017-10-23 14:26:28 -0400 |
|---|---|---|
| committer | Peter Jones <pmjones@gmail.com> | 2018-03-12 16:21:43 -0400 |
| commit | 1f1ec4cea8561d72734a56a76dc63a5c879bc994 (patch) | |
| tree | 30c4578711efd8eff5728d5e493f0d0ccc1055ce /include/guid.h | |
| parent | dc62a3c4dc3dd590fbba32c46b717088a132eb5e (diff) | |
| download | efi-boot-shim-1f1ec4cea8561d72734a56a76dc63a5c879bc994.tar.gz efi-boot-shim-1f1ec4cea8561d72734a56a76dc63a5c879bc994.zip | |
Make sure all of our include files have proper guards.
... and make them all the same formatting too.
Signed-off-by: Peter Jones <pjones@redhat.com>
Diffstat (limited to 'include/guid.h')
| -rw-r--r-- | include/guid.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/guid.h b/include/guid.h index 86b709b8..b2c1f8ff 100644 --- a/include/guid.h +++ b/include/guid.h @@ -1,3 +1,6 @@ +#ifndef SHIM_GUID_H +#define SHIM_GUID_H + #include <efi.h> extern EFI_GUID GV_GUID; @@ -12,3 +15,5 @@ extern EFI_GUID EFI_CERT_SHA256_GUID; extern EFI_GUID MOK_OWNER; extern EFI_GUID SECURITY_PROTOCOL_GUID; extern EFI_GUID SECURITY2_PROTOCOL_GUID; + +#endif /* SHIM_GUID_H */ |
