Revision 919451330b55366ac207e575c1982bc8fa5220ed authored by Junio C Hamano on 08 March 2010, 08:36:00 UTC, committed by Junio C Hamano on 08 March 2010, 08:36:00 UTC
* jk/maint-add--interactive-delete:
  add-interactive: fix bogus diff header line ordering
2 parent s 493e433 + e1327ed
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);

#endif /* SIGCHAIN_H */
back to top