summaryrefslogtreecommitdiffstats
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
commitfdff66b1eff3c38254e6c3eb449005149a6d7bc5 (patch)
treeee0e80b3a08cc23674fcbe26df0bd6242b22c777 /mandoc.h
parentc50fcb020d6b89ff503f7bc4bb8a3cc272fcbabe (diff)
downloadmandoc-fdff66b1eff3c38254e6c3eb449005149a6d7bc5.tar.gz
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.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/mandoc.h b/mandoc.h
index 138f783b..7b7e4f41 100644
--- a/mandoc.h
+++ b/mandoc.h
@@ -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 *);