This website works better with JavaScript.
Home
Explore
Register
Sign In
Fincer
/
openntpd-openbsd
mirror of
https://github.com/Fincer/openntpd-openbsd
Watch
1
Star
0
Fork
0
Code
Issues
0
Projects
0
Releases
61
Wiki
Activity
Browse Source
guard inclusion of sys/sysctl.h so we can detect at compile time and
keep linux distros happy that don't have it. ok bcook@
OPENBSD_5_6
beck
10 years ago
parent
04b73346bd
commit
279cc5b646
2 changed files
with
6 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-1
src/lib/libcrypto/arc4random/getentropy_linux.c
+3
-1
src/lib/libcrypto/crypto/getentropy_linux.c
+ 3
- 1
src/lib/libcrypto/arc4random/getentropy_linux.c
View File
@ -1,4 +1,4 @@
/* $OpenBSD: getentropy_linux.c,v 1.
19 2014/07/12 14:46:31 deraadt
Exp $ */
/* $OpenBSD: getentropy_linux.c,v 1.
20 2014/07/12 15:43:49 beck
Exp $ */
/*
*
Copyright
(
c
)
2014
Theo
de
Raadt
<
deraadt
@
openbsd
.
org
>
@ -24,7 +24,9 @@
#
include
<sys/ioctl.h>
#
include
<sys/resource.h>
#
include
<sys/syscall.h>
#
ifdef HAVE_SYS_SYSCTL_H
#
include
<sys/sysctl.h>
#
endif
#
include
<sys/statvfs.h>
#
include
<sys/socket.h>
#
include
<sys/mount.h>
+ 3
- 1
src/lib/libcrypto/crypto/getentropy_linux.c
View File
@ -1,4 +1,4 @@
/* $OpenBSD: getentropy_linux.c,v 1.
19 2014/07/12 14:46:31 deraadt
Exp $ */
/* $OpenBSD: getentropy_linux.c,v 1.
20 2014/07/12 15:43:49 beck
Exp $ */
/*
*
Copyright
(
c
)
2014
Theo
de
Raadt
<
deraadt
@
openbsd
.
org
>
@ -24,7 +24,9 @@
#
include
<sys/ioctl.h>
#
include
<sys/resource.h>
#
include
<sys/syscall.h>
#
ifdef HAVE_SYS_SYSCTL_H
#
include
<sys/sysctl.h>
#
endif
#
include
<sys/statvfs.h>
#
include
<sys/socket.h>
#
include
<sys/mount.h>
Write
Preview
Loading…
Cancel
Save