Remove stray punctuation in ANSI_SYNOPSIS prototypes
2015-06-23 Jon Turney <jon.turney@dronecode.org.uk> * libc/string/wcscpy.c: Remove stray ',' from prototype in ANSI_SYNOPSIS. * libc/string/wcpcpy.c: Ditto. Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
This commit is contained in:
parent
c7b1e4cbf2
commit
e8442c9625
|
@ -1,3 +1,9 @@
|
|||
2015-06-23 Jon Turney <jon.turney@dronecode.org.uk>
|
||||
|
||||
* libc/string/wcscpy.c: Remove stray ',' from prototype in
|
||||
ANSI_SYNOPSIS.
|
||||
* libc/string/wcpcpy.c: Ditto.
|
||||
|
||||
2015-06-23 Jon Turney <jon.turney@dronecode.org.uk>
|
||||
|
||||
* libc/stdlib/itoa.c: Fix makedoc markup.
|
||||
|
|
|
@ -4,7 +4,7 @@ FUNCTION
|
|||
|
||||
ANSI_SYNOPSIS
|
||||
#include <wchar.h>
|
||||
wchar_t *wcpcpy(wchar_t *<[s1]>, const wchar_t *,<[s2]>);
|
||||
wchar_t *wcpcpy(wchar_t *<[s1]>, const wchar_t *<[s2]>);
|
||||
|
||||
TRAD_SYNOPSIS
|
||||
wchar_t *wcpcpy(<[s1]>, <[s2]>
|
||||
|
|
|
@ -5,7 +5,7 @@ FUNCTION
|
|||
ANSI_SYNOPSIS
|
||||
#include <wchar.h>
|
||||
wchar_t *wcscpy(wchar_t *__restrict <[s1]>,
|
||||
const wchar_t *__restrict ,<[s2]>);
|
||||
const wchar_t *__restrict <[s2]>);
|
||||
|
||||
TRAD_SYNOPSIS
|
||||
wchar_t *wcscpy(<[s1]>, <[s2]>
|
||||
|
|
Loading…
Reference in New Issue