]> Git Repo - qemu.git/blame - include/qemu/fprintf-fn.h
Merge remote-tracking branch 'remotes/mjt/tags/pull-trivial-patches-2015-10-08' into...
[qemu.git] / include / qemu / fprintf-fn.h
CommitLineData
fba0a593
PM
1/*
2 * Typedef for fprintf-alike function pointers.
3 *
4 * This work is licensed under the terms of the GNU GPL, version 2 or later.
5 * See the COPYING file in the top-level directory.
6 */
7
8#ifndef QEMU_FPRINTF_FN_H
9#define QEMU_FPRINTF_FN_H 1
10
11#include "qemu/compiler.h"
12#include <stdio.h>
13
14typedef int (*fprintf_function)(FILE *f, const char *fmt, ...)
15 GCC_FMT_ATTR(2, 3);
16
17#endif
This page took 0.034989 seconds and 4 git commands to generate.