blob: 4b1b58f4c9415b2474e57363b518aa4359c574ea (
plain) (
tree)
|
|
#pragma once
#include <stdatomic.h>
typedef atomic_int sig_atomic_t;
// TODO
#define SIG_DFL 0 // stupid
#define SIGINT 42 // stupid
void (*signal(int sig, void (*func)(int)))(int);
/* vim: set sts=0 ts=4 sw=4 tw=0 noet :*/
|