diff options
author | alfred <alfred@FreeBSD.org> | 2003-01-25 21:33:05 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2003-01-25 21:33:05 +0000 |
commit | 28e8e60e36c2d950d4ebf7b406f2401ccb63c0c1 (patch) | |
tree | 565a9f0b99f068635c74c8de66bf023c628f73a5 /lib/libc/sys/shmat.2 | |
parent | 918ae76f60cdf7c75ca92bd430114118502aa7fe (diff) | |
download | FreeBSD-src-28e8e60e36c2d950d4ebf7b406f2401ccb63c0c1.zip FreeBSD-src-28e8e60e36c2d950d4ebf7b406f2401ccb63c0c1.tar.gz |
Bring shm functions closer the the opengroup standards.
PR: 47469
Submitted by: Craig Rodrigues <rodrigc@attbi.com>
Diffstat (limited to 'lib/libc/sys/shmat.2')
-rw-r--r-- | lib/libc/sys/shmat.2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/sys/shmat.2 b/lib/libc/sys/shmat.2 index 31e2a80..b992d41 100644 --- a/lib/libc/sys/shmat.2 +++ b/lib/libc/sys/shmat.2 @@ -40,9 +40,9 @@ .In sys/ipc.h .In sys/shm.h .Ft void * -.Fn shmat "int shmid" "void *addr" "int flag" +.Fn shmat "int shmid" "const void *addr" "int flag" .Ft int -.Fn shmdt "void *addr" +.Fn shmdt "const void *addr" .Sh DESCRIPTION The .Fn shmat |