1 --- fread.3.bsdnew 2009-11-11 13:33:08.000000000 -0800
2 +++ fread.3 2009-11-11 13:33:09.000000000 -0800
7 -.Fn fread "void * restrict ptr" "size_t size" "size_t nmemb" "FILE * restrict stream"
8 +.Fn fread "void *restrict ptr" "size_t size" "size_t nitems" \
9 + "FILE *restrict stream"
11 -.Fn fwrite "const void * restrict ptr" "size_t size" "size_t nmemb" "FILE * restrict stream"
12 +.Fn fwrite "const void *restrict ptr" "size_t size" "size_t nitems" \
13 + "FILE *restrict stream"
22 bytes long, from the stream pointed to by
23 @@ -62,7 +64,7 @@ storing them at the location given by
31 bytes long, to the stream pointed to by
32 @@ -82,7 +84,7 @@ the return value is a short object count
36 -does not distinguish between end-of-file and error, and callers
37 +does not distinguish between end-of-file and error; callers
41 @@ -91,7 +93,7 @@ to determine which occurred.
44 returns a value less than
47 only if a write error has occurred.