Clean up header guards that don't match their file name
[qemu/kevin.git] / include / qemu / fprintf-fn.h
blobb6bad35b1b3c712939cb3b3bc2dec1e87b950473
1 /*
2 * Typedef for fprintf-alike function pointers.
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 */
8 #ifndef QEMU_FPRINTF_FN_H
9 #define QEMU_FPRINTF_FN_H 1
12 typedef int (*fprintf_function)(FILE *f, const char *fmt, ...)
13 GCC_FMT_ATTR(2, 3);
15 #endif