Revision 5febbda4e7afb4f26bed9d2dc5f9c4ceca86d2b8 authored by Junio C Hamano on 10 February 2012, 21:59:01 UTC, committed by Junio C Hamano on 10 February 2012, 21:59:01 UTC
* jl/submodule-re-add:
  submodule add: fix breakage when re-adding a deep submodule
2 parent s 38ca63f + 1017c1a
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