diff options
author | Andreas Bießmann <andreas.devel@googlemail.com> | 2013-07-02 08:37:35 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-07-03 09:35:30 -0400 |
commit | 1a260fe3efc1a42332480bb9aa6e6703af79f267 (patch) | |
tree | b2e3f681d1a308be24926348f8b32e86ba9520e0 | |
parent | 9df49553a462f38341d2613f2635064f34f156a0 (diff) |
lib/rsa/rsa-sig.c: compile on OS X
Interfaces exposed by error.h seems not to be used in rsa-sig.c, remove it.
This also fixes an compile error on OS X:
---8<---
u-boot/lib/rsa/rsa-sign.c:23:19: error: error.h: No such file or directory
--->8---
Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>
Acked-by: Jeroen Hofstee <jeroen@myspectrum.nl>
Tested-by: Lubomir Popov <lpopov@mm-sol.com>
-rw-r--r-- | lib/rsa/rsa-sign.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/rsa/rsa-sign.c b/lib/rsa/rsa-sign.c index a75ae245ef1..e30d8ca847c 100644 --- a/lib/rsa/rsa-sign.c +++ b/lib/rsa/rsa-sign.c @@ -20,7 +20,6 @@ #include "mkimage.h" #include <stdio.h> #include <string.h> -#include <error.h> #include <image.h> #include <time.h> #include <openssl/rsa.h> |