commit | cc3ed4073c44cd045d53184392af2352b84fcfc4 | [log] [tgz] |
---|---|---|
author | Jonathan Gray <jsg@jsg.id.au> | Fri May 15 22:20:34 2020 +1000 |
committer | Tom Rini <trini@konsulko.com> | Fri May 15 14:47:35 2020 -0400 |
tree | 0f51ebb953672fe6aca310d7fa9d5642b6cc15f1 | |
parent | 62d0dfc54056922a7e7a45dc06bac1469f4f0d20 [diff] |
rsa: don't use malloc.h in rsa-sign.c stdlib.h is the header for malloc since at least c89/c90. There is no system malloc.h on OpenBSD and trying to use malloc.h here falls back to the U-Boot malloc.h breaking the build of qemu_arm64. Fixes: 336d4615f8 ("dm: core: Create a new header file for 'compat' features") Signed-off-by: Jonathan Gray <jsg@jsg.id.au>