mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-02-25 21:57:00 +00:00
Cleaned up with scripts/clean-header-guards.pl. Backports commit 175de52487ce0b0c78daa4cdf41a5a465a168a25 from qemu
18 lines
383 B
C
18 lines
383 B
C
/*
|
|
* Typedef for fprintf-alike function pointers.
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
* See the COPYING file in the top-level directory.
|
|
*/
|
|
|
|
#ifndef QEMU_FPRINTF_FN_H
|
|
#define QEMU_FPRINTF_FN_H
|
|
|
|
#include "qemu/compiler.h"
|
|
#include <stdio.h>
|
|
|
|
typedef int (*fprintf_function)(FILE *f, const char *fmt, ...)
|
|
GCC_FMT_ATTR(2, 3);
|
|
|
|
#endif
|