]> git.saurik.com Git - apple/libc.git/blob - stdio/FreeBSD/putc.3.patch
Libc-763.11.tar.gz
[apple/libc.git] / stdio / FreeBSD / putc.3.patch
1 --- putc.3.bsdnew 2009-11-11 13:33:13.000000000 -0800
2 +++ putc.3 2009-11-11 13:33:14.000000000 -0800
3 @@ -48,17 +48,33 @@
4 .Sh SYNOPSIS
5 .In stdio.h
6 .Ft int
7 -.Fn fputc "int c" "FILE *stream"
8 -.Ft int
9 -.Fn putc "int c" "FILE *stream"
10 -.Ft int
11 -.Fn putc_unlocked "int c" "FILE *stream"
12 -.Ft int
13 -.Fn putchar "int c"
14 -.Ft int
15 -.Fn putchar_unlocked "int c"
16 -.Ft int
17 -.Fn putw "int w" "FILE *stream"
18 +.Fo fputc
19 +.Fa "int c"
20 +.Fa "FILE *stream"
21 +.Fc
22 +.Ft int
23 +.Fo putc
24 +.Fa "int c"
25 +.Fa "FILE *stream"
26 +.Fc
27 +.Ft int
28 +.Fo putc_unlocked
29 +.Fa "int c"
30 +.Fa "FILE *stream"
31 +.Fc
32 +.Ft int
33 +.Fo putchar
34 +.Fa "int c"
35 +.Fc
36 +.Ft int
37 +.Fo putchar_unlocked
38 +.Fa "int c"
39 +.Fc
40 +.Ft int
41 +.Fo putw
42 +.Fa "int w"
43 +.Fa "FILE *stream"
44 +.Fc
45 .Sh DESCRIPTION
46 The
47 .Fn fputc
48 @@ -117,7 +133,7 @@ The functions,
49 .Fn fputc ,
50 .Fn putc ,
51 .Fn putchar ,
52 -.Fn putc_unlocked
53 +.Fn putc_unlocked ,
54 and
55 .Fn putchar_unlocked
56 return the character written.