|
@@ -7,6 +7,9 @@ typedef long off_t;
|
7
|
7
|
typedef void * userptr_t;
|
8
|
8
|
typedef long long time_t;
|
9
|
9
|
struct tm;
|
|
10
|
+typedef unsigned short wchar_t;
|
|
11
|
+typedef void mbstate_t;
|
|
12
|
+struct digest_algorithm;
|
10
|
13
|
|
11
|
14
|
/* Inhibit use of built-in models for functions where Coverity's
|
12
|
15
|
* assumptions about the modelled function are incorrect for iPXE.
|
|
@@ -19,3 +22,8 @@ time_t mktime ( struct tm *tm ) {
|
19
|
22
|
}
|
20
|
23
|
int getchar ( void ) {
|
21
|
24
|
}
|
|
25
|
+size_t wcrtomb ( char *buf, wchar_t wc, mbstate_t *ps ) {
|
|
26
|
+}
|
|
27
|
+void hmac_init ( struct digest_algorithm *digest, void *digest_ctx,
|
|
28
|
+ void *key, size_t *key_len ) {
|
|
29
|
+}
|