diff options
author | 2020-06-03 12:41:39 +0000 | |
---|---|---|
committer | 2020-06-03 12:41:39 +0000 | |
commit | c509fb25cd6144281482c9708b1dee67ef42a0d4 (patch) | |
tree | 599a189a29c26c7ffb40f26f4b49eabcf959780c | |
parent | Add missing ieee80211_release_node() calls in cases where hardware (diff) | |
download | wireguard-openbsd-c509fb25cd6144281482c9708b1dee67ef42a0d4.tar.xz wireguard-openbsd-c509fb25cd6144281482c9708b1dee67ef42a0d4.zip |
Init_Sigset() isn't a prototype without the void!
obvious warning fix
-rw-r--r-- | usr.bin/make/job.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/job.h b/usr.bin/make/job.h index a43a3e209f1..3b86c90a1f9 100644 --- a/usr.bin/make/job.h +++ b/usr.bin/make/job.h @@ -1,7 +1,7 @@ #ifndef _JOB_H_ #define _JOB_H_ -/* $OpenBSD: job.h,v 1.37 2020/01/16 16:07:18 espie Exp $ */ +/* $OpenBSD: job.h,v 1.38 2020/06/03 12:41:39 espie Exp $ */ /* $NetBSD: job.h,v 1.5 1996/11/06 17:59:10 christos Exp $ */ /* @@ -55,7 +55,7 @@ extern void Job_Make(GNode *); extern void Job_Init(int); /* save signal mask at start */ -extern void Sigset_Init(); +extern void Sigset_Init(void); /* interface with the normal build in make.c */ /* okay = can_start_job(); |