From 24468662800fd73acc499988c3c16601a2128c62 Mon Sep 17 00:00:00 2001 From: Magnus Lundborg Date: Tue, 1 Oct 2013 09:21:15 +0200 Subject: Removed DECLSPECDLLEXPORT from md5.c 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] = { -- cgit v0.10.1