summaryrefslogtreecommitdiffstats
path: root/libmisc/basename.c
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-26 16:18:39 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-26 16:18:39 +0000
commit5242eef8fc54636a41701fd9d7083ba6e4a4e0b3 (patch)
treee6a0980092957865a937cc0f34446df3d5194e99 /libmisc/basename.c
parentReleasing progress-linux version 1:4.13+dfsg1-5~progress7.99u1. (diff)
downloadshadow-5242eef8fc54636a41701fd9d7083ba6e4a4e0b3.tar.xz
shadow-5242eef8fc54636a41701fd9d7083ba6e4a4e0b3.zip
Merging upstream version 1:4.15.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'libmisc/basename.c')
-rw-r--r--libmisc/basename.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/libmisc/basename.c b/libmisc/basename.c
deleted file mode 100644
index fe91653..0000000
--- a/libmisc/basename.c
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * SPDX-FileCopyrightText: 1990 - 1994, Julianne Frances Haugh
- * SPDX-FileCopyrightText: 1996 - 1997, Marek Michałkiewicz
- * SPDX-FileCopyrightText: 2003 - 2005, Tomasz Kłoczko
- *
- * SPDX-License-Identifier: BSD-3-Clause
- */
-
-/*
- * basename.c - not worth copyrighting :-). Some versions of Linux libc
- * already have basename(), other versions don't. To avoid confusion,
- * we will not use the function from libc and use a different name here.
- * --marekm
- */
-
-#include <config.h>
-
-#ident "$Id$"
-
-#include "defines.h"
-#include "prototypes.h"
-/*@observer@*/const char *Basename (const char *str)
-{
- char *cp = strrchr (str, '/');
-
- return (NULL != cp) ? cp + 1 : str;
-}