[Glibc-bsd-commits] r4408 - trunk/glibc-ports/kfreebsd

Aurelien Jarno aurel32 at alioth.debian.org
Tue May 7 21:04:56 UTC 2013


Author: aurel32
Date: 2013-05-07 21:04:56 +0000 (Tue, 07 May 2013)
New Revision: 4408

Added:
   trunk/glibc-ports/kfreebsd/_exit.S
Log:
Add a BSD version of _exit.S following upstream commit 1ad743de3ee8f85b12aa7ee2a0886892d02a89fa


Added: trunk/glibc-ports/kfreebsd/_exit.S
===================================================================
--- trunk/glibc-ports/kfreebsd/_exit.S	                        (rev 0)
+++ trunk/glibc-ports/kfreebsd/_exit.S	2013-05-07 21:04:56 UTC (rev 4408)
@@ -0,0 +1,25 @@
+/* Copyright (C) 1991,92,97,99,2002 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, write to the Free
+   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+   02111-1307 USA.  */
+
+#include <sysdep.h>
+
+PSEUDO (_exit, exit, 1)
+	/* Shouldn't get here.  */
+PSEUDO_END(_exit)
+libc_hidden_def (_exit)
+weak_alias (_exit, _Exit)




More information about the Glibc-bsd-commits mailing list