From 516660c1617cf1e738805023192d697504b43815 Mon Sep 17 00:00:00 2001 From: obrien Date: Mon, 30 Oct 2000 10:04:56 +0000 Subject: string.h has been repo copied to mystring.h --- usr.bin/window/Makefile | 6 ----- usr.bin/window/string.h | 66 ------------------------------------------------- 2 files changed, 72 deletions(-) delete mode 100644 usr.bin/window/string.h (limited to 'usr.bin/window') diff --git a/usr.bin/window/Makefile b/usr.bin/window/Makefile index e1654a6..3d2616a 100644 --- a/usr.bin/window/Makefile +++ b/usr.bin/window/Makefile @@ -15,7 +15,6 @@ SRCS= char.c cmd.c cmd1.c cmd2.c cmd3.c cmd4.c cmd5.c cmd6.c cmd7.c \ wwredrawwin.c wwrint.c wwscroll.c wwsize.c wwspawn.c wwsuspend.c \ wwterminfo.c wwtty.c wwunframe.c wwupdate.c wwwrite.c xx.c xxflush.c \ compress.c -SRCS+= mystring.h MAN= window.1 CFLAGS+= -I. @@ -23,9 +22,4 @@ CFLAGS+= -I. DPADD= ${LIBTERMCAP} LDADD= -ltermcap -mystring.h: string.h - ln -sf ${.ALLSRC} ${.TARGET} - -CLEANFILES+= mystring.h - .include diff --git a/usr.bin/window/string.h b/usr.bin/window/string.h deleted file mode 100644 index 3d14ae6..0000000 --- a/usr.bin/window/string.h +++ /dev/null @@ -1,66 +0,0 @@ -/* - * Copyright (c) 1983, 1993 - * The Regents of the University of California. All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * Edward Wang at The University of California, Berkeley. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * @(#)string.h 8.1 (Berkeley) 6/6/93 - * $FreeBSD$ - */ - -#define STR_DEBUG - -char *str_cpy(); -char *str_ncpy(); -char *str_cat(); -char *str_itoa(); - -#define str_cmp(a, b) strcmp(a, b) - -#ifdef STR_DEBUG -struct mystring { - struct mystring *s_forw; - struct mystring *s_back; - char s_data[1]; -}; - -struct mystring str_head; - -#define str_offset ((unsigned)str_head.s_data - (unsigned)&str_head) -#define str_stos(s) ((struct mystring *)((unsigned)(s) - str_offset)) - -char *str_alloc(); -int str_free(); -#else -#define str_free(s) free(s) -#define str_alloc(s) malloc(s) -#endif -- cgit v1.1