summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Salyzyn <salyzyn@google.com>2014-04-30 14:12:23 -0700
committerMark Salyzyn <salyzyn@google.com>2014-05-07 16:56:21 -0700
commit6092743d8ada8d3099783e0e705caa8829362c73 (patch)
tree11b69f4c1e269f801c0346883a6c23b10c11ddc3
parent0e4f2a5b31e3aa13af03904b3a32e47a701e6c27 (diff)
downloadlibmincrypt-6092743d8ada8d3099783e0e705caa8829362c73.tar.gz
libmincrypt: suppress warning messages
- deal with implict declaration issue - deal with some -Wunused issues Change-Id: I253f1412a696c4811ade70a931fb1c01b31c62a5
-rw-r--r--dsa_sig.c1
-rw-r--r--test/ecdsa_test.c10
-rw-r--r--test/rsa_test.c12
3 files changed, 17 insertions, 6 deletions
diff --git a/dsa_sig.c b/dsa_sig.c
index 8df6cf7..101314b 100644
--- a/dsa_sig.c
+++ b/dsa_sig.c
@@ -26,6 +26,7 @@
#include <string.h>
+#include "mincrypt/dsa_sig.h"
#include "mincrypt/p256.h"
/**
diff --git a/test/ecdsa_test.c b/test/ecdsa_test.c
index b5a7b3a..24ec013 100644
--- a/test/ecdsa_test.c
+++ b/test/ecdsa_test.c
@@ -24,15 +24,21 @@
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include <stdio.h>
#include <ctype.h>
+#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <sys/cdefs.h>
+#include "mincrypt/dsa_sig.h"
#include "mincrypt/p256.h"
#include "mincrypt/p256_ecdsa.h"
#include "mincrypt/sha256.h"
+#ifndef __unused
+#define __unused __attribute__((__unused__))
+#endif
+
/**
* Messages signed using:
*
@@ -209,7 +215,7 @@ unsigned char* parsehex(char* str, int* len) {
return result;
}
-int main(int arg, char** argv) {
+int main(int arg __unused, char** argv __unused) {
unsigned char hash_buf[SHA256_DIGEST_SIZE];
diff --git a/test/rsa_test.c b/test/rsa_test.c
index 17862dc..055138f 100644
--- a/test/rsa_test.c
+++ b/test/rsa_test.c
@@ -1,5 +1,4 @@
-/* rsa_test.c
-**
+/*
** Copyright 2013, The Android Open Source Project
**
** Redistribution and use in source and binary forms, with or without
@@ -25,14 +24,19 @@
** ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include <stdio.h>
#include <ctype.h>
+#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <sys/cdefs.h>
#include "mincrypt/rsa.h"
#include "mincrypt/sha.h"
+#ifndef __unused
+#define __unused __attribute__((unused))
+#endif
+
// RSA test data taken from:
//
// ftp://ftp.rsa.com/pub/rsalabs/tmp/pkcs1v15sign-vectors.txt
@@ -791,7 +795,7 @@ unsigned char* parsehex(char* str, int* len) {
}
-int main(int arg, char** argv) {
+int main(int arg __unused, char** argv __unused) {
unsigned char hash[SHA_DIGEST_SIZE];