aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2014-12-05 21:53:38 +0100
committerJohannes Löthberg <johannes@kyriasis.com>2014-12-05 21:53:38 +0100
commit56a52aa9e7f0e66d42d72ce736f136f88c0ec9a4 (patch)
tree30be22ddfecac0bdce75dab256285fe4eb6dc887 /src
parentda3c93a8c9968be50a2e74e37a85c910e896ffa3 (diff)
downloadsds-56a52aa9e7f0e66d42d72ce736f136f88c0ec9a4.tar.xz
sds.h: Don’t use __ in front of include guard
It’s reserved for the implementation and shouldn’t be used.
Diffstat (limited to 'src')
-rw-r--r--src/sds.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sds.h b/src/sds.h
index b4243f0..5080495 100644
--- a/src/sds.h
+++ b/src/sds.h
@@ -25,8 +25,8 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef __SDS_H
-#define __SDS_H
+#ifndef SDS_H
+#define SDS_H
#define SDS_MAX_PREALLOC (1024*1024)