Revision 1c18a14b637aac5bc0a64441c5884ef8755ba7bf authored by Junio C Hamano on 18 March 2014, 20:51:07 UTC, committed by Junio C Hamano on 18 March 2014, 20:51:07 UTC
* jc/no-need-for-env-in-sh-scripts:
  *.sh: drop useless use of "env"
2 parent s 006f678 + 6eca18c
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