diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2013-12-31 23:23:10 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2013-12-31 23:23:10 +0000 |
commit | 8165032a586fb8d32ff25ec7340db91a5568e604 (patch) | |
tree | 12fb3a063e97fce5041017ce1e096a75ccc6dc11 /libmandoc.h | |
parent | 00a83eb67618ef2d3d4efc692882efa3dc6252ca (diff) | |
download | mandoc-8165032a586fb8d32ff25ec7340db91a5568e604.tar.gz |
Simplify: Remove an unused argument from the mandoc_eos() function.
No functional change.
Diffstat (limited to 'libmandoc.h')
-rw-r--r-- | libmandoc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmandoc.h b/libmandoc.h index 63943e5a..198184a0 100644 --- a/libmandoc.h +++ b/libmandoc.h @@ -42,7 +42,7 @@ void mandoc_vmsg(enum mandocerr, struct mparse *, int, int, const char *, ...); char *mandoc_getarg(struct mparse *, char **, int, int *); char *mandoc_normdate(struct mparse *, char *, int, int); -int mandoc_eos(const char *, size_t, int); +int mandoc_eos(const char *, size_t); int mandoc_strntoi(const char *, size_t, int); const char *mandoc_a2msec(const char*); |