diff options
author | bde <bde@FreeBSD.org> | 1997-04-11 18:54:05 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-04-11 18:54:05 +0000 |
commit | 8da5ad6e3eba8a175a3d1630d1e41e1572cfb82c (patch) | |
tree | 94257904f3d0355e4a16d71410d053c63acc9464 | |
parent | 5681f0a3dca8af03a55f7e8481bb9243ffc8e809 (diff) | |
download | FreeBSD-src-8da5ad6e3eba8a175a3d1630d1e41e1572cfb82c.zip FreeBSD-src-8da5ad6e3eba8a175a3d1630d1e41e1572cfb82c.tar.gz |
Fixed return type of __syscall() in synopsis.
Don't quote "..." in synopsis. Quoting here is unnecessary and unusual.
-rw-r--r-- | lib/libc/sys/syscall.2 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/sys/syscall.2 b/lib/libc/sys/syscall.2 index f357366..f59f2d1 100644 --- a/lib/libc/sys/syscall.2 +++ b/lib/libc/sys/syscall.2 @@ -42,9 +42,9 @@ .Fd #include <sys/syscall.h> .Fd #include <unistd.h> .Ft int -.Fn syscall "int number" "..." -.Ft int -.Fn __syscall "quad_t number" "..." +.Fn syscall "int number" ... +.Ft off_t +.Fn __syscall "quad_t number" ... .Sh DESCRIPTION .Fn Syscall performs the system call whose assembly language |