mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-22 17:42:10 -06:00

We are already in January 2025! Update copyright notices. Cc: peter.maydell@linaro.org Cc: qemu-trivial@nongnu.org Signed-off-by: Ani Sinha <anisinha@redhat.com> Message-ID: <20250101080116.1050336-1-anisinha@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
13 lines
481 B
C
13 lines
481 B
C
#ifndef QEMU_HELP_TEXTS_H
|
|
#define QEMU_HELP_TEXTS_H
|
|
|
|
/* Copyright string for -version arguments, About dialogs, etc */
|
|
#define QEMU_COPYRIGHT "Copyright (c) 2003-2025 " \
|
|
"Fabrice Bellard and the QEMU Project developers"
|
|
|
|
/* Bug reporting information for --help arguments, About dialogs, etc */
|
|
#define QEMU_HELP_BOTTOM \
|
|
"See <https://qemu.org/contribute/report-a-bug> for how to report bugs.\n" \
|
|
"More information on the QEMU project at <https://qemu.org>."
|
|
|
|
#endif
|