diff options
author | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-10-01 07:21:15 (GMT) |
---|---|---|
committer | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-10-01 07:21:15 (GMT) |
commit | 24468662800fd73acc499988c3c16601a2128c62 (patch) | |
tree | 8e63183159c22569ccfb8a1a0b1cbaef57e503a9 /src/lib/md5.c | |
parent | a105a8e03b4cf188ac6a3a5b9d87433d78ac56f7 (diff) |
Removed DECLSPECDLLEXPORT from md5.c
Diffstat (limited to 'src/lib/md5.c')
-rw-r--r-- | src/lib/md5.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/lib/md5.c b/src/lib/md5.c index 896bf68..8ea5b13 100644 --- a/src/lib/md5.c +++ b/src/lib/md5.c @@ -1,11 +1,11 @@ /* - * + * * This source code is distributed with - * + * * G R O M A C S - * + * * GROningen MAchine for Chemical Simulations - * + * * VERSION 4.5 * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others. * Copyright (c) 1991-2010, The GROMACS development team, @@ -15,19 +15,19 @@ * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. - * + * * If you want to redistribute modifications, please consider that * scientific software is very special. Version control is crucial - * bugs must be traceable. We will be happy to consider code for * inclusion in the official distribution, but derived work must not * be called official GROMACS. Details are found in the README & COPYING * files - if they are missing, get the official version at www.gromacs.org. - * + * * To help us fund GROMACS development, we humbly ask that you cite * the papers on the package - you can find them in the top README file. - * + * * For more info, check our website at http://www.gromacs.org - * + * * And Hey: * GROningen Mixture of Alchemy and Childrens' Stories */ @@ -363,7 +363,7 @@ md5_process(md5_state_t *pms, const md5_byte_t *data /*[64]*/) pms->abcd[3] += d; } -void DECLSPECDLLEXPORT +void md5_init(md5_state_t *pms) { pms->count[0] = pms->count[1] = 0; @@ -373,7 +373,7 @@ md5_init(md5_state_t *pms) pms->abcd[3] = 0x10325476; } -void DECLSPECDLLEXPORT +void md5_append(md5_state_t *pms, const md5_byte_t *data, int nbytes) { const md5_byte_t *p = data; @@ -411,7 +411,7 @@ md5_append(md5_state_t *pms, const md5_byte_t *data, int nbytes) memcpy(pms->buf, p, left); } -void DECLSPECDLLEXPORT +void md5_finish(md5_state_t *pms, md5_byte_t digest[16]) { static const md5_byte_t pad[64] = { |