Revision 76afe74b10195c1e9f0c821c7f210da8de152006 authored by Junio C Hamano on 22 January 2015, 21:46:45 UTC, committed by Junio C Hamano on 22 January 2015, 21:46:45 UTC
* js/t1050:
  t1050-large: generate large files without dd
2 parent s 67b5440 + d0a042a
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