Revision e5be297279e8ee8c503eb59da21ab17edc40e748 authored by Junio C Hamano on 03 September 2013, 20:54:26 UTC, committed by Junio C Hamano on 03 September 2013, 20:54:26 UTC
* maint-1.8.2:
  fix shell syntax error in template
2 parent s a3bc3d0 + 6897a64
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