diff options
-rw-r--r-- | Build/source/texk/ttfdump/ChangeLog | 2 | ||||
-rw-r--r-- | Build/source/texk/ttfdump/libttf/ttfread.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Build/source/texk/ttfdump/ChangeLog b/Build/source/texk/ttfdump/ChangeLog index 981cc2cd6ef..89bfc6a0b04 100644 --- a/Build/source/texk/ttfdump/ChangeLog +++ b/Build/source/texk/ttfdump/ChangeLog @@ -1,5 +1,7 @@ 2009-06-03 Karl Berry <karl@tug.org> + * libttf/ttfread.c (ttfGetBYTE): do not make inline, just in case. + * include/ttf.h (ttfGetBYTE): replace [non-inline] definition here with declaration, referring to the definition in libttf/ttfread.c. Report from vvv, tlbuild 02 Jun 2009 23:48:52. diff --git a/Build/source/texk/ttfdump/libttf/ttfread.c b/Build/source/texk/ttfdump/libttf/ttfread.c index 5315509ce21..aabad984041 100644 --- a/Build/source/texk/ttfdump/libttf/ttfread.c +++ b/Build/source/texk/ttfdump/libttf/ttfread.c @@ -19,7 +19,7 @@ typedef long blkcnt_t; /* number of blocks in the file */ static char vcid[] = "$Id: ttfread.c,v 1.2 1998/07/04 13:17:51 werner Exp $"; #endif /* lint */ -inline BYTE ttfGetBYTE(FILE *fp) +BYTE ttfGetBYTE(FILE *fp) { int cc; if ((cc = fgetc(fp)) == EOF) |