summaryrefslogtreecommitdiff
path: root/src/z-form.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/z-form.c')
-rw-r--r--src/z-form.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/z-form.c b/src/z-form.c
index 7fec68e8..af254ef7 100644
--- a/src/z-form.c
+++ b/src/z-form.c
@@ -723,28 +723,3 @@ void quit_fmt(cptr fmt, ...)
/* Call quit() */
quit(res);
}
-
-
-
-/*
- * Vararg interface to core()
- */
-void core_fmt(cptr fmt, ...)
-{
- char *res;
- va_list vp;
-
- /* Begin the Varargs Stuff */
- va_start(vp, fmt);
-
- /* If requested, Do a virtual fprintf to stderr */
- res = vformat(fmt, vp);
-
- /* End the Varargs Stuff */
- va_end(vp);
-
- /* Call core() */
- core(res);
-}
-
-