summaryrefslogtreecommitdiff
path: root/bitncmp.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2013-02-13 14:37:16 +0100
committerDaniel Stenberg <daniel@haxx.se>2013-02-13 14:58:04 +0100
commit2a3a63ae1f0894fd33db0c30c75fb2f771d8e7fc (patch)
tree453492a5ef87079694e5b41617f753022beaa042 /bitncmp.h
parent9c03cc118c748f6ed2ffbda83ee7ba37cc34738d (diff)
downloadc-ares-2a3a63ae1f0894fd33db0c30c75fb2f771d8e7fc.tar.gz
c-ares-2a3a63ae1f0894fd33db0c30c75fb2f771d8e7fc.tar.bz2
c-ares-2a3a63ae1f0894fd33db0c30c75fb2f771d8e7fc.zip
ares__bitncmp: use two underscores for private functions
It used a single one previously making it look like a public one
Diffstat (limited to 'bitncmp.h')
-rw-r--r--bitncmp.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/bitncmp.h b/bitncmp.h
index b0a5c81..7b8d66c 100644
--- a/bitncmp.h
+++ b/bitncmp.h
@@ -2,7 +2,7 @@
#define __ARES_BITNCMP_H
-/* Copyright (C) 2005 by Dominick Meglio
+/* Copyright (C) 2005, 2013 by Dominick Meglio
*
* Permission to use, copy, modify, and distribute this
* software and its documentation for any purpose and without
@@ -18,9 +18,9 @@
*/
#ifndef HAVE_BITNCMP
-int ares_bitncmp(const void *l, const void *r, int n);
+int ares__bitncmp(const void *l, const void *r, int n);
#else
-#define ares_bitncmp(x,y,z) bitncmp(x,y,z)
+#define ares__bitncmp(x,y,z) bitncmp(x,y,z)
#endif
#endif /* __ARES_BITNCMP_H */