File: memcmp.h

package info (click to toggle)
nsd 4.14.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,188 kB
  • sloc: ansic: 64,639; sh: 4,523; python: 2,085; yacc: 1,344; makefile: 688
file content (16 lines) | stat: -rw-r--r-- 317 bytes parent folder | download | duplicates (20)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 *	memcmp.h: undef memcmp for compat.
 *
 *	Copyright (c) 2012, NLnet Labs. All rights reserved.
 *
 * See LICENSE for the license.
*/
#ifndef COMPAT_MEMCMP_H
#define COMPAT_MEMCMP_H

#ifdef memcmp
/* undef here otherwise autoheader messes it up in config.h */
#  undef memcmp
#endif

#endif /* COMPAT_MEMCMP_H */