summaryrefslogtreecommitdiff
path: root/sys-process/tini/files/tini-0.19.0-musl-basename.patch
blob: 69808d773de9d808fae8d0d7aa58e1739727c25a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/tini.c b/src/tini.c
index eb62015..0e7d5da 100644
--- a/src/tini.c
+++ b/src/tini.c
@@ -18,6 +18,8 @@
 #include "tiniConfig.h"
 #include "tiniLicense.h"
 
+#define basename(name) (strrchr((name),'/') ? strrchr((name),'/')+1 : (name))
+
 #if TINI_MINIMAL
 #define PRINT_FATAL(...)                         fprintf(stderr, __VA_ARGS__); fprintf(stderr, "\n");
 #define PRINT_WARNING(...)  if (verbosity > 0) { fprintf(stderr, __VA_ARGS__); fprintf(stderr, "\n"); }