]> git.meshlink.io Git - meshlink/blobdiff - src/ecdh.h
Add __attribute__((warn_unused_result)) to crypto functions.
[meshlink] / src / ecdh.h
index 881ee924e92e893ed743de3ac05473d839e01696..fbd47292b614ca06098dd3153974b918918266c8 100644 (file)
@@ -28,7 +28,7 @@ typedef struct ecdh ecdh_t;
 #endif
 
 extern ecdh_t *ecdh_generate_public(void *pubkey) __attribute__ ((__malloc__));
-extern bool ecdh_compute_shared(ecdh_t *ecdh, const void *pubkey, void *shared);
+extern bool ecdh_compute_shared(ecdh_t *ecdh, const void *pubkey, void *shared) __attribute__ ((__warn_unused_result__));
 extern void ecdh_free(ecdh_t *ecdh);
 
 #endif