Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 3c3e0b3c41f4c975828cf51d661614e45bf80dc0 authored by Junio C Hamano on 26 May 2011, 16:45:29 UTC
Git 1.7.5.3
Tip revision: 3c3e0b3
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