Include correct type definition in .h files

Right now, cryptsetup makes an attempt to include the correct
definitions in all of its header files, allowing the headers to
compile regardless of the context in which they are included.

A few files were missed, this change fixes them by adding the minimal
set of #includes needed to get them to compile.

Signed-off-by: Joe Richey <joerichey@google.com>
This commit is contained in:
Joe Richey
2020-09-16 14:54:21 -07:00
committed by Milan Broz
parent 6ed739d9ca
commit cc2d29dbf4
4 changed files with 9 additions and 1 deletions

View File

@@ -22,6 +22,9 @@
#ifndef _UTILS_STORAGE_WRAPPERS_H
#define _UTILS_STORAGE_WRAPPERS_H
#include <stdint.h>
#include <sys/types.h>
struct crypt_storage_wrapper;
struct device;
struct volume_key;