diff options
author | Mike Pritchard <mpp@FreeBSD.org> | 1997-01-30 21:31:52 +0000 |
---|---|---|
committer | Mike Pritchard <mpp@FreeBSD.org> | 1997-01-30 21:31:52 +0000 |
commit | d04f83f2e2de21fd231fb2b56119be99d8af7f6a (patch) | |
tree | 5a7ba244252a983f82019803ea515ba968de4a75 | |
parent | 13f11c9ee50a1a8cb277490fe76238ada4e36bd9 (diff) |
Notes
-rw-r--r-- | lib/libc/sys/getrlimit.2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/sys/getrlimit.2 b/lib/libc/sys/getrlimit.2 index 14c0d56aaf462..651223fb2b860 100644 --- a/lib/libc/sys/getrlimit.2 +++ b/lib/libc/sys/getrlimit.2 @@ -102,8 +102,8 @@ its resource limit). The structure is used to specify the hard and soft limits on a resource, .Bd -literal -offset indent struct rlimit { - quad_t rlim_cur; /* current (soft) limit */ - quad_t rlim_max; /* hard limit */ + rlim_t rlim_cur; /* current (soft) limit */ + rlim_t rlim_max; /* maximum value for rlim_cur */ }; .Ed .Pp |