source: compat/compat.h @ be43554

release-1.10
Last change on this file since be43554 was 6249a88f, checked in by Anders Kaseorg <andersk@mit.edu>, 11 years ago
Include generated headers with #include <> http://www.gnu.org/software/autoconf/manual/html_node/Configuration-Headers.html “With the appropriate -I option, you can use ‘#include <config.h>’. Actually, it's a good habit to use it, because in the rare case when the source directory contains another config.h, the build directory should be searched first.” Signed-off-by: Anders Kaseorg <andersk@mit.edu>
  • Property mode set to 100644
File size: 260 bytes
Line 
1#ifndef INC_BARNOWL_COMPAT_COMPAT_H
2#define INC_BARNOWL_COMPAT_COMPAT_H
3
4#include <config.h>
5
6#include <stddef.h>
7
8#if !HAVE_DECL_MEMRCHR
9void *memrchr(const void *s, int c, size_t n);
10#endif  /* !HAVE_DECL_MEMRCHR */
11
12#endif /* INC_BARNOWL_COMPAT_COMPAT_H */
Note: See TracBrowser for help on using the repository browser.