aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mandoc.h
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2013-12-30 18:30:32 +0000
committerIngo Schwarze <schwarze@openbsd.org>2013-12-30 18:30:32 +0000
commitfbe09feeade36a30f1baebf2a410b3fcea14da90 (patch)
treee74fc1c398ca0d963d7124bdba51675885a3a036 /mandoc.h
parent4b18d70fbe4de50f1214749fe74261131dcc9da3 (diff)
downloadmandoc-fbe09feeade36a30f1baebf2a410b3fcea14da90.tar.gz
mandoc-fbe09feeade36a30f1baebf2a410b3fcea14da90.tar.zst
mandoc-fbe09feeade36a30f1baebf2a410b3fcea14da90.zip
Remove duplicate const specifiers from the declaration of mandoc_escape().
Found by Thomas Klausner <wiz at NetBSD dot org> using clang. No functional change.
Diffstat (limited to 'mandoc.h')
-rw-r--r--mandoc.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/mandoc.h b/mandoc.h
index 5170b419..4c6a32f7 100644
--- a/mandoc.h
+++ b/mandoc.h
@@ -1,4 +1,4 @@
-/* $Id: mandoc.h,v 1.111 2013/10/05 20:30:05 schwarze Exp $ */
+/* $Id: mandoc.h,v 1.112 2013/12/30 18:30:32 schwarze Exp $ */
/*
* Copyright (c) 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2012, 2013 Ingo Schwarze <schwarze@openbsd.org>
@@ -400,8 +400,7 @@ struct man;
__BEGIN_DECLS
void *mandoc_calloc(size_t, size_t);
-enum mandoc_esc mandoc_escape(const char const **,
- const char const **, int *);
+enum mandoc_esc mandoc_escape(const char **, const char **, int *);
void *mandoc_malloc(size_t);
void *mandoc_realloc(void *, size_t);
char *mandoc_strdup(const char *);