summaryrefslogtreecommitdiff
path: root/Build
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2009-05-06 15:51:16 +0000
committerKarl Berry <karl@freefriends.org>2009-05-06 15:51:16 +0000
commit6d844cfb3a7c43da7f8c0f10a1db0fb15a34485b (patch)
treeef63ac95e2e1326f98beda467be49766cebcad0c /Build
parent8a45832a96d8562f82aa5da25278261e34bdf056 (diff)
include std headers
git-svn-id: svn://tug.org/texlive/trunk@12953 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r--Build/source/texk/web2c/xetexdir/ChangeLog5
-rw-r--r--Build/source/texk/web2c/xetexdir/jpegimage.c5
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 */