diff options
author | 2016-03-07 18:43:59 +0000 | |
---|---|---|
committer | 2016-03-07 18:43:59 +0000 | |
commit | c799dc6db0ca90a942c4bb0e104bed8cbd2fce92 (patch) | |
tree | ab9afe55e9549f5a91f549c25acd444f2bddece6 /sys/lib/libkern/arch/powerpc/__eabi.c | |
parent | Make __fd_isset() take a const fd_set * param, to avoid upsetting c++ (diff) | |
download | wireguard-openbsd-c799dc6db0ca90a942c4bb0e104bed8cbd2fce92.tar.xz wireguard-openbsd-c799dc6db0ca90a942c4bb0e104bed8cbd2fce92.zip |
Sync no-argument function declaration and definition by adding (void).
ok mpi@ millert@
Diffstat (limited to 'sys/lib/libkern/arch/powerpc/__eabi.c')
-rw-r--r-- | sys/lib/libkern/arch/powerpc/__eabi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/lib/libkern/arch/powerpc/__eabi.c b/sys/lib/libkern/arch/powerpc/__eabi.c index dac0138e6fa..788460c118a 100644 --- a/sys/lib/libkern/arch/powerpc/__eabi.c +++ b/sys/lib/libkern/arch/powerpc/__eabi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: __eabi.c,v 1.5 2012/12/05 23:20:22 deraadt Exp $ */ +/* $OpenBSD: __eabi.c,v 1.6 2016/03/07 18:44:00 naddy Exp $ */ /* $NetBSD: __main.c,v 1.3 1994/10/26 06:42:13 cgd Exp $ */ /* @@ -36,6 +36,6 @@ void __eabi(void); void -__eabi() +__eabi(void) { } |