diff options
Diffstat (limited to 'man/man3/getnetent_r.3')
| -rw-r--r-- | man/man3/getnetent_r.3 | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/man/man3/getnetent_r.3 b/man/man3/getnetent_r.3 index 8d6fcda732..d3ae09d22f 100644 --- a/man/man3/getnetent_r.3 +++ b/man/man3/getnetent_r.3 @@ -15,18 +15,21 @@ Standard C library .nf .B #include <netdb.h> .P -.BI "int getnetent_r(struct netent *restrict " result_buf , -.BI " char " buf "[restrict ." size "], size_t " size , +.BI "int getnetent_r(size_t " size ; +.BI " struct netent *restrict " result_buf , +.BI " char " buf "[restrict " size "], size_t " size , .BI " struct netent **restrict " result , .BI " int *restrict " h_errnop ); -.BI "int getnetbyname_r(const char *restrict " name , +.BI "int getnetbyname_r(size_t " size ; +.BI " const char *restrict " name , .BI " struct netent *restrict " result_buf , -.BI " char " buf "[restrict ." size "], size_t " size , +.BI " char " buf "[restrict " size "], size_t " size , .BI " struct netent **restrict " result , .BI " int *restrict " h_errnop ); -.BI "int getnetbyaddr_r(uint32_t " net ", int " type , +.BI "int getnetbyaddr_r(size_t " size ; +.BI " uint32_t " net ", int " type , .BI " struct netent *restrict " result_buf , -.BI " char " buf "[restrict ." size "], size_t " size , +.BI " char " buf "[restrict " size "], size_t " size , .BI " struct netent **restrict " result , .BI " int *restrict " h_errnop ); .P |
