diff options
author | Brent Cook <busterb@gmail.com> | 2014-11-19 07:43:07 -0600 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2014-12-03 17:07:17 -0600 |
commit | cccdd689e39b51af02b156229e5236a2a69dcdcb (patch) | |
tree | 79a77dcdc785a109aaaeb4a2a47507933525e47b /include/poll.h | |
parent | 1bbde19a7c0db8d25fb496dea3e05e3dbc0bbeaf (diff) | |
download | portable-cccdd689e39b51af02b156229e5236a2a69dcdcb.tar.gz portable-cccdd689e39b51af02b156229e5236a2a69dcdcb.tar.bz2 portable-cccdd689e39b51af02b156229e5236a2a69dcdcb.zip |
add minimal winsock->BSD networking header shims
also add license header to existing shims
Diffstat (limited to 'include/poll.h')
-rw-r--r-- | include/poll.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/include/poll.h b/include/poll.h index 37f32cd..c02a560 100644 --- a/include/poll.h +++ b/include/poll.h | |||
@@ -1,7 +1,14 @@ | |||
1 | /* | 1 | /* |
2 | * poll(2) emulation for Windows | ||
3 | * Public domain | 2 | * Public domain |
4 | * from Dongsheng Song <dongsheng.song@gmail.com> | 3 | * |
4 | * poll(2) emulation for Windows | ||
5 | * | ||
6 | * This emulates just-enough poll functionality on Windows to work in the | ||
7 | * context of the openssl(1) program. This is not a replacement for | ||
8 | * POSIX.1-2001 poll(2). | ||
9 | * | ||
10 | * Dongsheng Song <dongsheng.song@gmail.com> | ||
11 | * Brent Cook <bcook@openbsd.org> | ||
5 | */ | 12 | */ |
6 | 13 | ||
7 | #ifndef LIBCRYPTOCOMPAT_POLL_H | 14 | #ifndef LIBCRYPTOCOMPAT_POLL_H |