diff options
author | Taco Hoekwater <taco@elvenkind.com> | 2010-04-04 13:55:46 +0000 |
---|---|---|
committer | Taco Hoekwater <taco@elvenkind.com> | 2010-04-04 13:55:46 +0000 |
commit | f372862c42d234710b6057449b46818e63181c90 (patch) | |
tree | a9ebec66dd31ac37aed442502ebd1b9fe76245ec /Build/source/texk/web2c/luatexdir/luamd5/md5.c | |
parent | 2dad291ab056f30816e0aea61970f38033c2f6a5 (diff) |
import luatex 0.60.0 (with small local changes, see luatexdir/ChangeLog)
and do an autoreconf
git-svn-id: svn://tug.org/texlive/trunk@17680 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/luatexdir/luamd5/md5.c')
-rw-r--r-- | Build/source/texk/web2c/luatexdir/luamd5/md5.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Build/source/texk/web2c/luatexdir/luamd5/md5.c b/Build/source/texk/web2c/luatexdir/luamd5/md5.c index 7e630bfc46b..685880bedf5 100644 --- a/Build/source/texk/web2c/luatexdir/luamd5/md5.c +++ b/Build/source/texk/web2c/luatexdir/luamd5/md5.c @@ -6,13 +6,14 @@ #include <string.h> +#include <stdint.h> -#include "md5.h" +#include "luamd5.h" #define WORD 32 #define MASK 0xFFFFFFFF -typedef unsigned long WORD32; +typedef uint32_t WORD32; /** |