]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blame - db/quit.c
xfsprogs: Release v4.18.0
[thirdparty/xfsprogs-dev.git] / db / quit.c
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
6b803e5a 7#include "libxfs.h"
2bd0ea18
NS
8#include "command.h"
9#include "quit.h"
10
11static int quit_f(int argc, char **argv);
12
13static const cmdinfo_t quit_cmd =
14 { "quit", "q", quit_f, 0, 0, 0, NULL,
9ee7055c 15 N_("exit xfs_db"), NULL };
2bd0ea18
NS
16
17static int
18quit_f(
19 int argc,
20 char **argv)
21{
22 return 1;
23}
24
25void
26quit_init(void)
27{
28 add_command(&quit_cmd);
29}