diff options
author | Billingsly Wetherfordshire <phowl.mouth@gmail.com> | 2014-04-20 23:49:41 -0500 |
---|---|---|
committer | Billingsly Wetherfordshire <phowl.mouth@gmail.com> | 2014-04-20 23:49:41 -0500 |
commit | 357163570144d47a6d3be01fa7a9b2db99d6fa6e (patch) | |
tree | 66f2dfa0fce9bd86d26a811c0c6a4780feff40b6 | |
parent | a7db33e87640d4f3dc57cfc261763b690de3fd58 (diff) | |
download | Nim-357163570144d47a6d3be01fa7a9b2db99d6fa6e.tar.gz |
i left an {.importc.} in there
-rw-r--r-- | lib/wrappers/openssl.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/wrappers/openssl.nim b/lib/wrappers/openssl.nim index 41ee52522..3e86c6547 100644 --- a/lib/wrappers/openssl.nim +++ b/lib/wrappers/openssl.nim @@ -441,7 +441,7 @@ const MD5_LBLOCK* = int(MD5_CBLOCK div 4) MD5_DIGEST_LENGTH* = 16 type - MD5_CTX* {.importc.} = object + MD5_CTX* = object A,B,C,D,Nl,Nh: MD5_LONG data: array[MD5_LBLOCK, MD5_LONG] num: cuint |