diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2015-02-16 14:56:22 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2015-02-16 14:56:22 +0000 |
commit | 5d9158d7307172c955a9a114726e0e2636f2da9b (patch) | |
tree | c06dc41881c6d48cc157e295fb1cc359d78a2a82 /Makefile | |
parent | 72d5f8b30454867ff67650d9d828d741044534d7 (diff) | |
download | mandoc-5d9158d7307172c955a9a114726e0e2636f2da9b.tar.gz |
strtonum(3) compat glue
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -31,6 +31,7 @@ TESTSRCS = test-dirent-namlen.c \ test-strlcpy.c \ test-strptime.c \ test-strsep.c \ + test-strtonum.c \ test-wchar.c SRCS = att.c \ @@ -46,6 +47,7 @@ SRCS = att.c \ compat_strlcat.c \ compat_strlcpy.c \ compat_strsep.c \ + compat_strtonum.c \ demandoc.c \ eqn.c \ eqn_html.c \ @@ -189,7 +191,8 @@ COMPAT_OBJS = compat_fgetln.o \ compat_strcasestr.o \ compat_strlcat.o \ compat_strlcpy.o \ - compat_strsep.o + compat_strsep.o \ + compat_strtonum.o MANDOC_HTML_OBJS = eqn_html.o \ html.o \ |