diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-07-30 10:14:00 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-07-30 10:14:00 +0000 |
commit | 30af7a21451a1ac0d0f46ca95d75caf1a579827b (patch) | |
tree | e21aaa5e71c581f0f2dfec162ff5347d4bddea57 /Build/source/texk/web2c/luatexdir/image/epdf.h | |
parent | de9112a07b48ab6a6f1560d39d8eb5e7df58cda1 (diff) |
luaTeX: One and only one prototype per function
git-svn-id: svn://tug.org/texlive/trunk@27248 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/luatexdir/image/epdf.h')
-rw-r--r-- | Build/source/texk/web2c/luatexdir/image/epdf.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/Build/source/texk/web2c/luatexdir/image/epdf.h b/Build/source/texk/web2c/luatexdir/image/epdf.h index 685a8f40b85..4e5060282ec 100644 --- a/Build/source/texk/web2c/luatexdir/image/epdf.h +++ b/Build/source/texk/web2c/luatexdir/image/epdf.h @@ -1,7 +1,7 @@ /* epdf.h Copyright 1996-2006 Han The Thanh <thanh@pdftex.org> - Copyright 2006-2010 Taco Hoekwater <taco@luatex.org> + Copyright 2006-2012 Taco Hoekwater <taco@luatex.org> This file is part of LuaTeX. LuaTeX is free software; you can redistribute it and/or modify it under @@ -107,16 +107,14 @@ extern "C" { extern void epdf_free(void); /* utils.c */ - __attribute__ ((format(printf, 1, 2))) - extern void pdftex_warn(const char *fmt, ...); - __attribute__ ((noreturn, format(printf, 1, 2))) - extern void pdftex_fail(const char *fmt, ...); extern char *convertStringToPDFString(char *in, int len); extern char *stripzeros(char *a); /* lepdflib.c */ int luaopen_epdf(lua_State * L); +# include "luatex-common.h" + }; /**********************************************************************/ |