https://github.com/git/git
Revision 28a925bc515c3672a46739434aefb78593ee6883 authored by Junio C Hamano on 18 October 2017, 05:19:09 UTC, committed by Junio C Hamano on 18 October 2017, 05:19:09 UTC
Doc update.

* bb/doc-eol-dirty:
  Documentation: mention that `eol` can change the dirty status of paths
2 parent s 0445bd7 + 3bc4b8f
Raw File
Tip revision: 28a925bc515c3672a46739434aefb78593ee6883 authored by Junio C Hamano on 18 October 2017, 05:19:09 UTC
Merge branch 'bb/doc-eol-dirty' into maint
Tip revision: 28a925b
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