diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2001-09-29 14:27:00 +0000 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2001-09-29 14:27:00 +0000 |
commit | 819f1bef5c1baf684afcc5aef4d743f16e0c376b (patch) | |
tree | a76498ef09226d5afe2ceb3d0ff53eb5df337646 | |
parent | 0a8a0f4b5116d64785ffe669372471b8952b47ec (diff) |
20010929
- (bal) move reading 'config.h' up higher. Patch by albert chin
<china@thewrittenword.com)
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | openbsd-compat/sigact.c | 2 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ | |||
1 | 20010929 | ||
2 | - (bal) move reading 'config.h' up higher. Patch by albert chin | ||
3 | <china@thewrittenword.com) | ||
4 | |||
1 | 20010928 | 5 | 20010928 |
2 | - (djm) OpenBSD CVS sync: | 6 | - (djm) OpenBSD CVS sync: |
3 | - djm@cvs.openbsd.org 2001/09/28 09:49:31 | 7 | - djm@cvs.openbsd.org 2001/09/28 09:49:31 |
@@ -6581,4 +6585,4 @@ | |||
6581 | - Wrote replacements for strlcpy and mkdtemp | 6585 | - Wrote replacements for strlcpy and mkdtemp |
6582 | - Released 1.0pre1 | 6586 | - Released 1.0pre1 |
6583 | 6587 | ||
6584 | $Id: ChangeLog,v 1.1566 2001/09/28 10:03:25 djm Exp $ | 6588 | $Id: ChangeLog,v 1.1567 2001/09/29 14:27:00 mouring Exp $ |
diff --git a/openbsd-compat/sigact.c b/openbsd-compat/sigact.c index 390fbd070..806eb02b6 100644 --- a/openbsd-compat/sigact.c +++ b/openbsd-compat/sigact.c | |||
@@ -33,8 +33,8 @@ | |||
33 | * and: Eric S. Raymond <esr@snark.thyrsus.com> * | 33 | * and: Eric S. Raymond <esr@snark.thyrsus.com> * |
34 | ****************************************************************************/ | 34 | ****************************************************************************/ |
35 | 35 | ||
36 | #include <signal.h> | ||
37 | #include "config.h" | 36 | #include "config.h" |
37 | #include <signal.h> | ||
38 | #include "sigact.h" | 38 | #include "sigact.h" |
39 | 39 | ||
40 | /* This file provides sigaction() emulation using sigvec() */ | 40 | /* This file provides sigaction() emulation using sigvec() */ |