source: compat/compat.h @ 4e37d56

release-1.10release-1.8release-1.9
Last change on this file since 4e37d56 was 4dde585, checked in by Anders Kaseorg <andersk@mit.edu>, 13 years ago
compat/compat.h: Add #include guards Signed-off-by: Anders Kaseorg <andersk@mit.edu>
  • Property mode set to 100644
File size: 263 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.