diff options
author | Martin Willi <martin@strongswan.org> | 2005-11-24 11:30:19 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2005-11-24 11:30:19 +0000 |
commit | 5796aa164d79b2ffaf2839b281d490be6a72d1d8 (patch) | |
tree | 4031a623426b19bf03b2c61cd73a504e218fb1fb /Source/charon/utils/gmp_helper.c | |
parent | 95c61cb956505cdb0a91c8c8cd134dda3aac744d (diff) | |
download | strongswan-5796aa164d79b2ffaf2839b281d490be6a72d1d8.tar.bz2 strongswan-5796aa164d79b2ffaf2839b281d490be6a72d1d8.tar.xz |
- typedefs changed
Diffstat (limited to 'Source/charon/utils/gmp_helper.c')
-rw-r--r-- | Source/charon/utils/gmp_helper.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Source/charon/utils/gmp_helper.c b/Source/charon/utils/gmp_helper.c index 4e4a35c0b..745d69e0c 100644 --- a/Source/charon/utils/gmp_helper.c +++ b/Source/charon/utils/gmp_helper.c @@ -33,13 +33,12 @@ */ #define PRIMECHECK_ROUNDS 30 +typedef struct private_gmp_helper_t private_gmp_helper_t; + /** * Private data of an gmp_helper_t object. - * */ -typedef struct private_gmp_helper_s private_gmp_helper_t; - -struct private_gmp_helper_s { +struct private_gmp_helper_t { /** * public gmp_helper_t interface */ |