Fix ifdef typo for declaration of memmem.

Fixes build on IRIX.  bz#3081.
This commit is contained in:
Darren Tucker 2019-10-10 09:42:03 +11:00
parent 01ce1cd402
commit 0bd312a362

View File

@ -73,7 +73,7 @@ int getpagesize(void);
char *getcwd(char *pt, size_t size);
#endif
#ifdef HAVE_MEMMEM
#ifndef HAVE_MEMMEM
void *memmem(const void *, size_t, const void *, size_t);
#endif