comparison gendss.h @ 1295:750ec4ec4cbe

Convert #ifdef to #if, other build changes
author Matt Johnston <matt@ucc.asn.au>
date Wed, 04 May 2016 15:33:40 +0200
parents deed0571cacc
children
comparison
equal deleted inserted replaced
1294:56aba7dedbea 1295:750ec4ec4cbe
25 #ifndef DROPBEAR_GENDSS_H_ 25 #ifndef DROPBEAR_GENDSS_H_
26 #define DROPBEAR_GENDSS_H_ 26 #define DROPBEAR_GENDSS_H_
27 27
28 #include "dss.h" 28 #include "dss.h"
29 29
30 #ifdef DROPBEAR_DSS 30 #if DROPBEAR_DSS
31 31
32 dropbear_dss_key * gen_dss_priv_key(unsigned int size); 32 dropbear_dss_key * gen_dss_priv_key(unsigned int size);
33 33
34 #endif /* DROPBEAR_DSS */ 34 #endif /* DROPBEAR_DSS */
35 35