source: compat/compat.h @ f640876

release-1.10release-1.7release-1.8release-1.9
Last change on this file since f640876 was 12a6616, checked in by David Benjamin <davidben@mit.edu>, 13 years ago
Add a compatibility implementation of memrchr It's a GNU extension and not available on Solaris.
  • Property mode set to 100644
File size: 140 bytes
RevLine 
[12a6616]1#include "../config.h"
2
3#include <stddef.h>
4
5#ifndef HAVE_MEMRCHR
6void *memrchr(const void *s, int c, size_t n);
7#endif  /* HAVE_MEMRCHR */
Note: See TracBrowser for help on using the repository browser.