diff options
Diffstat (limited to 'man/man3/getprotoent_r.3')
| -rw-r--r-- | man/man3/getprotoent_r.3 | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/man/man3/getprotoent_r.3 b/man/man3/getprotoent_r.3 index 09c9092fab..b6e27cf539 100644 --- a/man/man3/getprotoent_r.3 +++ b/man/man3/getprotoent_r.3 @@ -15,16 +15,19 @@ Standard C library .nf .B #include <netdb.h> .P -.BI "int getprotoent_r(struct protoent *restrict " result_buf , -.BI " char " buf "[restrict ." size "], size_t " size , +.BI "int getprotoent_r(size_t " size ; +.BI " struct protoent *restrict " result_buf , +.BI " char " buf "[restrict " size "], size_t " size , .BI " struct protoent **restrict " result ); -.BI "int getprotobyname_r(const char *restrict " name , +.BI "int getprotobyname_r(size_t " size ; +.BI " const char *restrict " name , .BI " struct protoent *restrict " result_buf , -.BI " char " buf "[restrict ." size "], size_t " size , +.BI " char " buf "[restrict " size "], size_t " size , .BI " struct protoent **restrict " result ); -.BI "int getprotobynumber_r(int " proto , +.BI "int getprotobynumber_r(size_t " size ; +.BI " int " proto , .BI " struct protoent *restrict " result_buf , -.BI " char " buf "[restrict ." size "], size_t " size , +.BI " char " buf "[restrict " size "], size_t " size , .BI " struct protoent **restrict " result ); .P .fi |
