aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/aarch64/sys
diff options
context:
space:
mode:
authorBrooks Davis <brooks@FreeBSD.org>2018-04-04 22:45:08 +0000
committerBrooks Davis <brooks@FreeBSD.org>2018-04-04 22:45:08 +0000
commit7dd87e9a82e8cb5326186e2c3e31eb8e534ee087 (patch)
treeab75b8582209750596f70e896bce97734c9be93d /lib/libc/aarch64/sys
parent46023447b69f76174fb12abd910b9b6cba31345b (diff)
Notes
Diffstat (limited to 'lib/libc/aarch64/sys')
-rw-r--r--lib/libc/aarch64/sys/Makefile.inc1
-rw-r--r--lib/libc/aarch64/sys/sigreturn.S35
2 files changed, 0 insertions, 36 deletions
diff --git a/lib/libc/aarch64/sys/Makefile.inc b/lib/libc/aarch64/sys/Makefile.inc
index 60f9a98eea5c9..6514fe1f3340e 100644
--- a/lib/libc/aarch64/sys/Makefile.inc
+++ b/lib/libc/aarch64/sys/Makefile.inc
@@ -6,7 +6,6 @@ SRCS+= __vdso_gettc.c
MDASM= cerror.S \
shmat.S \
- sigreturn.S \
syscall.S \
vfork.S
diff --git a/lib/libc/aarch64/sys/sigreturn.S b/lib/libc/aarch64/sys/sigreturn.S
deleted file mode 100644
index 21ec1e456f5a2..0000000000000
--- a/lib/libc/aarch64/sys/sigreturn.S
+++ /dev/null
@@ -1,35 +0,0 @@
-/*-
- * Copyright (c) 2014 The FreeBSD Foundation
- * All rights reserved.
- *
- * This software was developed by Andrew Turner under
- * sponsorship from the FreeBSD Foundation.
- *
- * 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.
- *
- * THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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.
- */
-
-#include <machine/asm.h>
-__FBSDID("$FreeBSD$");
-
-#include "SYS.h"
-
-RSYSCALL(sigreturn)