blob: 297db877cc9dff560cc8d87a3004c1a4e17c51e1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
// TODO
typedef int sig_atomic_t;
#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 :*/
|