diff options
author | Richard Hughes <richard@hughsie.com> | 2008-06-26 07:17:48 +0100 |
---|---|---|
committer | Richard Hughes <richard@hughsie.com> | 2008-06-26 07:17:48 +0100 |
commit | 0150493f0c3c29d1224ac2a0abd8dfe93531e5de (patch) | |
tree | c19b7cb3701306358689bf79d42b91c15e9fab34 /librazor | |
parent | 72be99df310fab9466eff9ea5814761334f72b2c (diff) |
include stdint.h in razor.h to fix an error
This fixes the error: /usr/include/razor/razor.h:161: error: expected declaration specifiers or '...' before 'uint32_t'
Diffstat (limited to 'librazor')
-rw-r--r-- | librazor/razor.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/librazor/razor.h b/librazor/razor.h index 73da7ed..e5567f2 100644 --- a/librazor/razor.h +++ b/librazor/razor.h @@ -20,6 +20,8 @@ #ifndef _RAZOR_H_ #define _RAZOR_H_ +#include <stdint.h> + enum razor_repo_file_type { RAZOR_REPO_FILE_MAIN, RAZOR_REPO_FILE_DETAILS, |