Revision ea4f93eb99038329bbd692c5c8246e5ec8c11da9 authored by Junio C Hamano on 17 November 2014, 17:28:23 UTC, committed by Junio C Hamano on 17 November 2014, 17:28:23 UTC
* 'master' of git://github.com/git-l10n/git-po:
  l10n: de.po: translate 62 new messages
  l10n: de.po: Fixup one translation
  l10n: de.po: use imperative form for command options
2 parent s 49e0c5a + d544b2d
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