fprintf's compiler syntax added by C-Keen on Thu Mar 15 15:57:38 2012
(define-internal-compiler-syntax ((fprintf #%fprintf) x r c)
(display write fprintf number->string write-char open-output-string get-output-string)
(if (>= (length x) 3)
(let ((code (compile-format-string
'fprintf (cadr x)
x (cddr x)
r c)))
(or code x))
x))