Revision 68eb7b1b5222d5c9db2a9d5047bffe3fb65280f8 authored by Junio C Hamano on 28 October 2016, 16:01:12 UTC, committed by Junio C Hamano on 28 October 2016, 16:01:12 UTC
A follow-up to an already graduated topic.

* js/regexec-buf:
  configure.ac: improve description of NO_REGEX test
2 parent s 76796d4 + 842a516
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);
void sigchain_pop_common(void);

#endif /* SIGCHAIN_H */
back to top