diff options
Diffstat (limited to 'Build')
-rw-r--r-- | Build/source/texk/web2c/xetexdir/ChangeLog | 5 | ||||
-rw-r--r-- | Build/source/texk/web2c/xetexdir/jpegimage.c | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/Build/source/texk/web2c/xetexdir/ChangeLog b/Build/source/texk/web2c/xetexdir/ChangeLog index 2c0d96d8afc..b54123065a9 100644 --- a/Build/source/texk/web2c/xetexdir/ChangeLog +++ b/Build/source/texk/web2c/xetexdir/ChangeLog @@ -1,3 +1,8 @@ +2009-05-06 Karl Berry <karl@tug.org> + + * jpegimage.c: #include <stdlib.h> and <string.h> + instead of <memory.h>. + 2009-05-05 Peter Breitenlohner <peb@mppmu.mpg.de> * am/xetex.am: in CPPFLAGS define U_STATIC_IMPLEMENTATION diff --git a/Build/source/texk/web2c/xetexdir/jpegimage.c b/Build/source/texk/web2c/xetexdir/jpegimage.c index fafdb637c10..10d8c36a582 100644 --- a/Build/source/texk/web2c/xetexdir/jpegimage.c +++ b/Build/source/texk/web2c/xetexdir/jpegimage.c @@ -1,6 +1,6 @@ /****************************************************************************\ Part of the XeTeX typesetting system - copyright (c) 1994-2006 by SIL International + copyright (c) 1994-2009 by SIL International written by Jonathan Kew This program is free software; you can redistribute it and/or modify @@ -79,7 +79,8 @@ #include "jpegimage.h" -#include <memory.h> +#include <stdlib.h> +#include <string.h> #include "kpathsea/lib.h" /* for xmalloc/xrealloc prototypes */ |