]> rtime.felk.cvut.cz Git - l4.git/blob - kernel/fiasco/src/kern/ux/format.h
update
[l4.git] / kernel / fiasco / src / kern / ux / format.h
1 #ifndef __FIASCO_FORMAT_H
2 #define __FIASCO_FORMAT_H
3
4 #ifndef ASSEMBLER
5
6 /* This declaration is needed since printf is not checked per default
7  * when using with C++ */
8
9 #include <sys/cdefs.h>
10
11 __BEGIN_DECLS
12
13 int printf(const char *format, ...) __attribute__((format (printf,1,2) ));
14
15 __END_DECLS
16
17 #endif
18
19 #endif
20