changeset 86:8796d6c029b1 src

Fix undefined variable warning in md5.h. Patch by Erik Auerswald.
author rathann
date Sun, 06 Oct 2013 21:39:42 +0000
parents 06fed92263cd
children 1a6394166cce
files md5.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/md5.h	Sun Oct 06 21:34:05 2013 +0000
+++ b/md5.h	Sun Oct 06 21:39:42 2013 +0000
@@ -23,7 +23,7 @@
 
 #include <stdio.h>
 
-#if defined HAVE_LIMITS_H || _LIBC
+#if defined HAVE_LIMITS_H || defined _LIBC
 # include <limits.h>
 #endif