aboutsummaryrefslogtreecommitdiff
path: root/src/lj_str.h
diff options
context:
space:
mode:
authorMike Pall <mike>2013-05-12 23:52:09 +0200
committerMike Pall <mike>2013-05-12 23:52:09 +0200
commit19a9206caf1df71308bd8e4bd61c082026c6811c (patch)
treeff4827d89b46e6b6d0bc4ab90110496d6e8387be /src/lj_str.h
parent7d5acc29181a5194b05fd4650b9e28e4c4978ad1 (diff)
downloadluajit-19a9206caf1df71308bd8e4bd61c082026c6811c.tar.gz
luajit-19a9206caf1df71308bd8e4bd61c082026c6811c.tar.bz2
luajit-19a9206caf1df71308bd8e4bd61c082026c6811c.zip
Refactor internal string formatting.
Diffstat (limited to 'src/lj_str.h')
-rw-r--r--src/lj_str.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/lj_str.h b/src/lj_str.h
index 6e08764e..b929cbac 100644
--- a/src/lj_str.h
+++ b/src/lj_str.h
@@ -39,12 +39,4 @@ LJ_FUNC GCstr * LJ_FASTCALL lj_str_fromchar(lua_State *L, int c);
39#define LJ_STR_NUMBERBUF LUAI_MAXNUMBER2STR 39#define LJ_STR_NUMBERBUF LUAI_MAXNUMBER2STR
40#define LJ_STR_PTRBUF (2*sizeof(ptrdiff_t)+2) 40#define LJ_STR_PTRBUF (2*sizeof(ptrdiff_t)+2)
41 41
42/* String formatting. */
43LJ_FUNC const char *lj_str_pushvf(lua_State *L, const char *fmt, va_list argp);
44LJ_FUNC const char *lj_str_pushf(lua_State *L, const char *fmt, ...)
45#if defined(__GNUC__)
46 __attribute__ ((format (printf, 2, 3)))
47#endif
48 ;
49
50#endif 42#endif