diff options
author | 1997-11-14 20:56:03 +0000 | |
---|---|---|
committer | 1997-11-14 20:56:03 +0000 | |
commit | 7804ece176c41c03f63ef46b92abd78b35e1c9f3 (patch) | |
tree | b8deedbde0568ab6b4016fedbfe9c82283937dda /lib/libc/sys/mmap.2 | |
parent | fix for a line continuation bug, more than a year ald. work by mckusick, (diff) | |
download | wireguard-openbsd-7804ece176c41c03f63ef46b92abd78b35e1c9f3.tar.xz wireguard-openbsd-7804ece176c41c03f63ef46b92abd78b35e1c9f3.zip |
convert to void *addr
Diffstat (limited to 'lib/libc/sys/mmap.2')
-rw-r--r-- | lib/libc/sys/mmap.2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/sys/mmap.2 b/lib/libc/sys/mmap.2 index 19de24c96c9..aa14d81f49a 100644 --- a/lib/libc/sys/mmap.2 +++ b/lib/libc/sys/mmap.2 @@ -43,7 +43,7 @@ .Fd #include <sys/types.h> .Fd #include <sys/mman.h> .Ft caddr_t -.Fn mmap "caddr_t addr" "size_t len" "int prot" "int flags" "int fd" "off_t offset" +.Fn mmap "void *addr" "size_t len" "int prot" "int flags" "int fd" "off_t offset" .Sh DESCRIPTION The .Nm mmap |