Revision 64a03e970ab3ef0ce45d6bd3c1de1bff1de2beee authored by Junio C Hamano on 07 January 2015, 21:27:13 UTC, committed by Junio C Hamano on 07 January 2015, 21:27:13 UTC
* maint-1.8.5:
  is_hfs_dotgit: loosen over-eager match of \u{..47}
2 parent s 8333263 + 3d8a54e
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