]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blob - repair/err_protos.h
xfs: remove unnecessary parameter from xfs_iext_inc_seq
[thirdparty/xfsprogs-dev.git] / repair / err_protos.h
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc.
4 * All Rights Reserved.
5 */
6
7 /* abort, internal error */
8 void __attribute__((noreturn)) do_abort(char const *, ...)
9 __attribute__((format(printf,1,2)));
10 /* abort, system error */
11 void __attribute__((noreturn)) do_error(char const *, ...)
12 __attribute__((format(printf,1,2)));
13 /* issue warning */
14 void do_warn(char const *, ...)
15 __attribute__((format(printf,1,2)));
16 /* issue log message */
17 void do_log(char const *, ...)
18 __attribute__((format(printf,1,2)));