Revision ed6ce4382b5cb34e98ca3db2f19de82a037da322 authored by Junio C Hamano on 26 March 2012, 19:10:05 UTC, committed by Junio C Hamano on 26 March 2012, 19:10:05 UTC
* ms/maint-config-error-at-eol-linecount:
  config: report errors at the EOL with correct line number
2 parent s a12c6b0 + 4b34059
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