Revision efe9d6ce33ed817150f4ff63ebfc14a3f7667eb4 authored by Junio C Hamano on 05 October 2017, 04:48:19 UTC, committed by Junio C Hamano on 05 October 2017, 04:48:19 UTC
Code clean-up.

* rs/resolve-ref-optional-result:
  refs: pass NULL to resolve_refdup() if hash is not needed
  refs: pass NULL to refs_resolve_refdup() if hash is not needed
2 parent s 29a67cc + efbd4fd
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