diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-09-09 10:41:19 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-09-09 10:41:19 +0000 |
commit | 5136c015f8ed33c373416e4e3e2583cac12a215a (patch) | |
tree | 0798872058840ccd60977164cb277916c7eea2f9 /sink.c | |
parent | 391eeae8cd3ee25454bd0ec98ff20e70fa18ffee (diff) | |
download | fetchmail-5136c015f8ed33c373416e4e3e2583cac12a215a.tar.gz fetchmail-5136c015f8ed33c373416e4e3e2583cac12a215a.tar.bz2 fetchmail-5136c015f8ed33c373416e4e3e2583cac12a215a.zip |
Bring back SIGCHLD declaration.
svn path=/trunk/; revision=3461
Diffstat (limited to 'sink.c')
-rw-r--r-- | sink.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -179,6 +179,11 @@ int smtp_open(struct query *ctl) } /* these are shared by open_sink and stuffline */ +#ifndef HAVE_SIGACTION +static RETSIGTYPE (*sigchld)(int); +#else +static struct sigaction sa_old; +#endif /* HAVE_SIGACTION */ static FILE *sinkfp; int stuffline(struct query *ctl, char *buf) |