diff options
Diffstat (limited to 'qemu/roms/u-boot/tools/gdb/error.h')
-rw-r--r-- | qemu/roms/u-boot/tools/gdb/error.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/qemu/roms/u-boot/tools/gdb/error.h b/qemu/roms/u-boot/tools/gdb/error.h new file mode 100644 index 000000000..fdadaacc6 --- /dev/null +++ b/qemu/roms/u-boot/tools/gdb/error.h @@ -0,0 +1,14 @@ +/* + * (C) Copyright 2000 + * Murray Jensen <Murray.Jensen@csiro.au> + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#include <stdarg.h> + +extern char *pname; + +extern void Warning(char *, ...); +extern void Error(char *, ...); +extern void Perror(char *, ...); |