mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 16:37:19 +09:00
This stuff is sufficiently different from the rest of main.c, let's move it to its own .c/.h file, to make main.c a bit shorter. No code changes, just some refactoring.
10 lines
198 B
C
10 lines
198 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
|
|
extern bool arg_dump_core;
|
|
extern int arg_crash_chvt;
|
|
extern bool arg_crash_shell;
|
|
extern bool arg_crash_reboot;
|