xref: /netbsd-src/external/bsd/unbound/dist/compat/memcmp.h (revision 3b6c3722d8f990f9a667d638078aee8ccdc3c0f3)
1*3b6c3722Schristos /*
2*3b6c3722Schristos  *	memcmp.h: undef memcmp for compat.
3*3b6c3722Schristos  *
4*3b6c3722Schristos  *	Copyright (c) 2012, NLnet Labs. All rights reserved.
5*3b6c3722Schristos  *
6*3b6c3722Schristos  * See LICENSE for the license.
7*3b6c3722Schristos */
8*3b6c3722Schristos #ifndef COMPAT_MEMCMP_H
9*3b6c3722Schristos #define COMPAT_MEMCMP_H
10*3b6c3722Schristos 
11*3b6c3722Schristos #ifdef memcmp
12*3b6c3722Schristos /* undef here otherwise autoheader messes it up in config.h */
13*3b6c3722Schristos #  undef memcmp
14*3b6c3722Schristos #endif
15*3b6c3722Schristos 
16*3b6c3722Schristos #endif /* COMPAT_MEMCMP_H */
17