summaryrefslogtreecommitdiff
path: root/include/sig.h
blob: c7e1e4244ad3f65176349f2d9b52872ad0c55995 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-FileCopyrightText: 2024 Lizzy Fleckenstein <lizzy@vlhl.dev>
//
// SPDX-License-Identifier: AGPL-3.0-or-later

#ifndef SIG_H
#define SIG_H

#include <stdbool.h>

extern bool signal_stop;
void signal_setup();

#endif