Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 7d3ccdffb5d28970dd7a4d177cfcca690ccd0c22 authored by Junio C Hamano on 03 May 2013, 22:23:45 UTC
Git 1.8.3-rc1
Tip revision: 7d3ccdf
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);

#endif /* SIGCHAIN_H */
back to top