summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-03-17 09:25:54 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-03-17 09:25:54 +0000
commitbd8ffa169561febc3e033b48048c82faf378228f (patch)
tree0acd40b0da74d2a6f2b657ac275c4a1dff77a85f
parent2f2351f094aa7517f808caa95dd7cd8eafa7e80c (diff)
downloadmandoc-bd8ffa169561febc3e033b48048c82faf378228f.tar.gz
mandoc-bd8ffa169561febc3e033b48048c82faf378228f.tar.zst
mandoc-bd8ffa169561febc3e033b48048c82faf378228f.zip
Kill off mdoc_strings.c, which is now empty. Byeeeeeeeee!
-rw-r--r--Makefile8
-rw-r--r--mdoc_strings.c32
2 files changed, 3 insertions, 37 deletions
diff --git a/Makefile b/Makefile
index ccae26fd..51042ea6 100644
--- a/Makefile
+++ b/Makefile
@@ -43,15 +43,15 @@ MANDOCSRCS = mandoc.c
MANDOCOBJS = mandoc.o
-MDOCLNS = mdoc_macro.ln mdoc.ln mdoc_hash.ln mdoc_strings.ln \
+MDOCLNS = mdoc_macro.ln mdoc.ln mdoc_hash.ln \
mdoc_argv.ln mdoc_validate.ln \
lib.ln att.ln arch.ln vol.ln msec.ln st.ln
-MDOCOBJS = mdoc_macro.o mdoc.o mdoc_hash.o mdoc_strings.o \
+MDOCOBJS = mdoc_macro.o mdoc.o mdoc_hash.o \
mdoc_argv.o mdoc_validate.o lib.o att.o \
arch.o vol.o msec.o st.o
-MDOCSRCS = mdoc_macro.c mdoc.c mdoc_hash.c mdoc_strings.c \
+MDOCSRCS = mdoc_macro.c mdoc.c mdoc_hash.c \
mdoc_argv.c mdoc_validate.c lib.c att.c \
arch.c vol.c msec.c st.c
@@ -217,8 +217,6 @@ mdoc_macro.ln mdoc_macro.o: mdoc_macro.c libmdoc.h
mdoc_term.ln mdoc_term.o: mdoc_term.c term.h mdoc.h
-mdoc_strings.ln mdoc_strings.o: mdoc_strings.c libmdoc.h
-
man_hash.ln man_hash.o: man_hash.c libman.h
mdoc_hash.ln mdoc_hash.o: mdoc_hash.c libmdoc.h
diff --git a/mdoc_strings.c b/mdoc_strings.c
deleted file mode 100644
index 3ac669d6..00000000
--- a/mdoc_strings.c
+++ /dev/null
@@ -1,32 +0,0 @@
-/* $Id: mdoc_strings.c,v 1.28 2011/03/17 09:24:51 kristaps Exp $ */
-/*
- * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
- *
- * Permission to use, copy, modify, and distribute this software for any
- * purpose with or without fee is hereby granted, provided that the above
- * copyright notice and this permission notice appear in all copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
- * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
- * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
- * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
- * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
- * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
- * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- */
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include <sys/types.h>
-
-#include <assert.h>
-#include <stdlib.h>
-#include <stdio.h>
-#include <string.h>
-#include <time.h>
-
-#include "mandoc.h"
-#include "libmdoc.h"
-
-/* FIXME: move this into an editable .in file. */