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 cdf1d0a9f5
commit d43ff22d66
1 changed files with 1 additions and 1 deletions

View File

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