#1148081 manpages-dev: memcmp(3) has broken synopsis

#1148081#5
Date:
2026-09-16 19:44:43 UTC
From:
To:
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,