- Package:
- manpages-dev
- Source:
- manpages-dev
- Submitter:
- Daniel Kahn Gillmor
- Date:
- 2026-09-16 19:47:02 UTC
- Severity:
- normal
the memcmp(3) synopsis appears to be wrong:
```
0 dkg@bob:~$ man memcmp | head -n 13
memcmp(3) Library Functions Manual memcmp(3)
NAME
memcmp - memory compare
LIBRARY
Standard C library (libc, -lc)
SYNOPSIS
#include <string.h> // see memory.h(3head)
int memcmp(size_t n;
const void s1[n], const void s2[n], size_t n);
0 dkg@bob:~$
```
I think those last two lines should just be this one line:
```
int memcmp(const void s1[n], const void s2[n], size_t n);
```
Regards,