summaryrefslogtreecommitdiff
path: root/daemon/md5.c
diff options
context:
space:
mode:
Diffstat (limited to 'daemon/md5.c')
-rw-r--r--daemon/md5.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/daemon/md5.c b/daemon/md5.c
index 6ffb752a..6b55ec3b 100644
--- a/daemon/md5.c
+++ b/daemon/md5.c
@@ -19,6 +19,7 @@
*
*/
+#include "config.h"
#include <string.h> /* for memcpy() */
#ifdef __LINUX__
@@ -31,12 +32,11 @@
#define byteReverse(buf, len) /* Nothing */
#else
-void byteReverse(unsigned char *buf, unsigned longs);
-
/*
* Note: this code is harmless on little-endian machines.
*/
-void byteReverse(unsigned char *buf, unsigned longs)
+static void
+byteReverse(unsigned char *buf, unsigned longs)
{
uint32 t;
do {