diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2003-01-02 20:23:45 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2003-01-02 20:23:45 +0000 |
commit | b65354efaeed93200f88e8b7e144b68158fe0e23 (patch) | |
tree | b18a8bf86a4da16fa7cc75b78c71516139661ccb | |
parent | 20373a075a695d5136cc742bdcc6422fb8b126cf (diff) |
Begone.
-rw-r--r-- | lib/libc/arch/mvme88k/DEFS.h | 3 | ||||
-rw-r--r-- | lib/libc/arch/mvme88k/Makefile.inc | 6 | ||||
-rw-r--r-- | lib/libc/arch/mvme88k/SYS.h | 85 |
3 files changed, 0 insertions, 94 deletions
diff --git a/lib/libc/arch/mvme88k/DEFS.h b/lib/libc/arch/mvme88k/DEFS.h deleted file mode 100644 index ab78a8a84ca..00000000000 --- a/lib/libc/arch/mvme88k/DEFS.h +++ /dev/null @@ -1,3 +0,0 @@ -/* $OpenBSD: DEFS.h,v 1.2 2000/03/01 17:31:22 todd Exp $ */ - -#include <machine/asm.h> diff --git a/lib/libc/arch/mvme88k/Makefile.inc b/lib/libc/arch/mvme88k/Makefile.inc deleted file mode 100644 index b381572edb9..00000000000 --- a/lib/libc/arch/mvme88k/Makefile.inc +++ /dev/null @@ -1,6 +0,0 @@ -# $OpenBSD: Makefile.inc,v 1.2 2000/03/01 17:31:22 todd Exp $ - -KMINCLUDES= arch/m88k/DEFS.h arch/m88k/SYS.h -#KMSRCS= bcmp.S bzero.S ffs.S strcat.c strcmp.S strcpy.S strlen.S strncmp.S \ -# strncpy.S htonl.S htons.S ntohl.S ntohs.S -KMSRCS= htonl.S htons.S ntohl.S ntohs.S diff --git a/lib/libc/arch/mvme88k/SYS.h b/lib/libc/arch/mvme88k/SYS.h deleted file mode 100644 index 64043af55ac..00000000000 --- a/lib/libc/arch/mvme88k/SYS.h +++ /dev/null @@ -1,85 +0,0 @@ -/* $OpenBSD: SYS.h,v 1.5 2002/02/19 22:12:36 millert Exp $ */ -/*- - * Copyright (c) 1990 The Regents of the University of California. - * All rights reserved. - * - * This code is derived from software contributed to Berkeley by - * the Systems Programming Group of the University of Utah Computer - * Science Department. - * - * 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. - * - * from: @(#)SYS.h 5.5 (Berkeley) 5/7/91 - */ - -#include <sys/syscall.h> -#include <machine/asm.h> - -#ifdef __STDC__ - -#define _SYSCALL(x,y) align 8; \ - ENTRY(x); \ - ld r10,r31,32; \ - ld r11,r31,36; \ - ld r12,r31,40; \ - or r13,r0, SYS_ ## y; \ - tb0 0, r0, 128; \ - br cerror -#define SYSCALL(x) _SYSCALL(x,x) -#define RSYSCALL(x) SYSCALL(x) ;\ - jmp r1 -#define PSEUDO(x,y) _SYSCALL(x,y); \ - jmp r1 -#define PSEUDO_NOERROR(x,y) ENTRY(x); ;\ - or r13,r0, SYS_ ## y; \ - tb0 0,r0,128; or r0,r0,r0;jmp r1 - -#else /* !__STDC__ */ - -#define _SYSCALL(x,y) align 8; \ - ENTRY(x); \ - ld r10,r31,32; \ - ld r11,r31,36; \ - ld r12,r31,40; \ - or r13,r0, SYS_/**/y; \ - tb0 0, r0, 128; \ - br cerror -#define SYSCALL(x) _SYSCALL(x,x) -#define RSYSCALL(x) SYSCALL(x); \ - jmp r1 -#define PSEUDO(x,y) _SYSCALL(x,y); \ - jmp r1 -#define PSEUDO_NOERROR(x,y) ENTRY(x); \ - or r13,r0, SYS_/**/y; \ - tb0 0,r0,128; or r0,r0,r0; jmp r1 -#endif /* !__STDC__ */ - -#define ASMSTR .asciz - - .globl cerror |