Make all header files self-suffienct

Almost all the headers in cryptsetup are self-suffienct (in that they
compile on their own). By including <stddef.h>, <stdint.h>, or
<sys/types.h>, all headers will now compile on their own.

This is useful for importing cryptsetup into Bazel/Blaze.
This commit is contained in:
joerichey@google.com
2018-07-06 12:00:23 -07:00
committed by Milan Broz
parent e8b6890318
commit 59b5f360af
5 changed files with 8 additions and 0 deletions

View File

@@ -22,6 +22,8 @@
#ifndef _UTILS_KEYRING
#define _UTILS_KEYRING
#include <stddef.h>
int keyring_check(void);
int keyring_get_passphrase(const char *key_desc,