mirror of
https://github.com/git/git.git
synced 2024-11-23 09:56:28 +08:00
10 lines
171 B
C
10 lines
171 B
C
|
#ifndef SIGCHAIN_H
|
||
|
#define SIGCHAIN_H
|
||
|
|
||
|
typedef void (*sigchain_fun)(int);
|
||
|
|
||
|
int sigchain_push(int sig, sigchain_fun f);
|
||
|
int sigchain_pop(int sig);
|
||
|
|
||
|
#endif /* SIGCHAIN_H */
|