diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-11-08 00:15:23 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-11-08 00:15:23 +0000 |
commit | 7f5351a1e9d07e9a65c22430e56ff4c50c4a9bdf (patch) | |
tree | e11bfd5999a90dc1e0b895076fb6eb87f5b41506 /mandoc.3 | |
parent | 9830303b6541ca2717331d52b40997c9e566a48b (diff) | |
download | mandoc-7f5351a1e9d07e9a65c22430e56ff4c50c4a9bdf.tar.gz |
Const-ify some mchars arguments. I think these are non-const for historical
dumbness on my part.
Diffstat (limited to 'mandoc.3')
-rw-r--r-- | mandoc.3 | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -76,14 +76,14 @@ .Fn mchars_num2uc "const char *cp" "size_t sz" .Ft "const char *" .Fo mchars_spec2str -.Fa "struct mchars *p" +.Fa "const struct mchars *p" .Fa "const char *cp" .Fa "size_t sz" .Fa "size_t *rsz" .Fc .Ft int .Fo mchars_spec2cp -.Fa "struct mchars *p" +.Fa "const struct mchars *p" .Fa "const char *cp" .Fa "size_t sz" .Ft "const char *" |