Staging
v0.5.1
Revision c9808fa014aa88cc306705d308d1d9065d567ddc authored by Jonathan Nieder on 19 April 2020, 23:30:19 UTC, committed by Jonathan Nieder on 19 April 2020, 23:30:19 UTC
This merges up the security fix from v2.17.5.

Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
2 parent s 69fab82 + 9206d27
Raw File
sigchain.h
#ifndef SIGCHAIN_H
#define SIGCHAIN_H

typedef void (*sigchain_fun)(int);

int sigchain_push(int sig, sigchain_fun f);
int sigchain_pop(int sig);

void sigchain_push_common(sigchain_fun f);
void sigchain_pop_common(void);

#endif /* SIGCHAIN_H */
back to top