repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
cleanup spinlock registers to match hook ordering
[AROS.git]
/
compiler
/
alib
/
fprintf.c
blob
d21def0bbaca79527bce6ea8094bafcd790d2c1f
1
/*
2
Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3
$Id$
4
5
Desc: Varargs stub for VFPrintf()
6
Lang: english
7
*/
8
9
#include <dos/dos.h>
10
#include <proto/dos.h>
11
#include <stdarg.h>
12
13
LONG
FPrintf
(
BPTR fh
,
STRPTR fmt
, ...)
14
{
15
LONG retval
;
16
17
retval
=
VFPrintf
(
fh
,
fmt
, (
LONG
*)(&
fmt
+
1
));
18
19
return
retval
;
20
}