diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-03-17 09:25:54 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-03-17 09:25:54 +0000 |
commit | 04952a92f487d5de042d2f4a619b075f7fe4f434 (patch) | |
tree | 61ae6fc39127129e414cd370189b210d44c7356b | |
parent | 34a3726cbf934773afce11d899a27323b816f872 (diff) | |
download | mandoc-04952a92f487d5de042d2f4a619b075f7fe4f434.tar.gz |
Kill off mdoc_strings.c, which is now empty. Byeeeeeeeee!
-rw-r--r-- | Makefile | 8 | ||||
-rw-r--r-- | mdoc_strings.c | 32 |
2 files changed, 3 insertions, 37 deletions
@@ -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 bd2047b3..00000000 --- a/mdoc_strings.c +++ /dev/null @@ -1,32 +0,0 @@ -/* $Id$ */ -/* - * 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. */ |