]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blame - repair/err_protos.h
xfs_repair: pass ops through during scan
[thirdparty/xfsprogs-dev.git] / repair / err_protos.h
CommitLineData
959ef981 1// SPDX-License-Identifier: GPL-2.0
2bd0ea18 2/*
da23017d
NS
3 * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc.
4 * All Rights Reserved.
2bd0ea18
NS
5 */
6
b1559967 7/* abort, internal error */
5d1b7f0f
CH
8void __attribute__((noreturn)) do_abort(char const *, ...)
9 __attribute__((format(printf,1,2)));
b1559967 10/* abort, system error */
5d1b7f0f
CH
11void __attribute__((noreturn)) do_error(char const *, ...)
12 __attribute__((format(printf,1,2)));
b1559967 13/* issue warning */
5d1b7f0f
CH
14void do_warn(char const *, ...)
15 __attribute__((format(printf,1,2)));
b1559967 16/* issue log message */
5d1b7f0f
CH
17void do_log(char const *, ...)
18 __attribute__((format(printf,1,2)));