diff options
author | Stefan Schmidt <s.schmidt@samsung.com> | 2019-11-01 09:35:09 +0100 |
---|---|---|
committer | Cedric BAIL <cedric.bail@free.fr> | 2019-12-04 12:21:24 -0800 |
commit | f3d9b8ee703621cfbb52a03d346335148318af7a (patch) | |
tree | 38e0f640c8ed31c717668faa64be419fa6c07905 /src/lib/escape/escape_libgen.h | |
parent | 003ce06e85ba0f1597a26405ead92f2e01607177 (diff) |
esacpe: remove library from tree
This has not been used for a while and is not even buildable after our
switch to meson. It was a niche to start with given that it needed the
PS3 OS to run on. I asked for any remaining users at EDD and on the list
but heard nothing. Time to remove.
Signed-off-by: Stefan Schmidt <s.schmidt@samsung.com>
Reviewed-by: Cedric BAIL <cedric.bail@free.fr>
Differential Revision: https://phab.enlightenment.org/D10778
Diffstat (limited to 'src/lib/escape/escape_libgen.h')
-rw-r--r-- | src/lib/escape/escape_libgen.h | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/src/lib/escape/escape_libgen.h b/src/lib/escape/escape_libgen.h deleted file mode 100644 index 4b636740f7..0000000000 --- a/src/lib/escape/escape_libgen.h +++ /dev/null | |||
@@ -1,33 +0,0 @@ | |||
1 | #ifndef __ESCAPE_LIBGEN_H__ | ||
2 | #define __ESCAPE_LIBGEN_H__ | ||
3 | |||
4 | /** | ||
5 | * @file escape_libgen.h | ||
6 | * @brief The file that provides functions ported from Unix in libgen.h. | ||
7 | * @defgroup Escape_Libgen_Group Libgen.h functions. | ||
8 | * @ingroup Escape | ||
9 | * | ||
10 | * This header provides functions ported from Unix in libgen.h. | ||
11 | * | ||
12 | * @{ | ||
13 | */ | ||
14 | |||
15 | EAPI char *escape_basename(char *path); | ||
16 | |||
17 | #ifdef basename | ||
18 | #undef basename | ||
19 | #endif | ||
20 | #define basename(p) escape_basename(p) | ||
21 | |||
22 | EAPI char *escape_dirname(char *path); | ||
23 | |||
24 | #ifdef dirname | ||
25 | #undef dirname | ||
26 | #endif | ||
27 | #define dirname(p) escape_dirname(p) | ||
28 | |||
29 | /** | ||
30 | * @} | ||
31 | */ | ||
32 | |||
33 | #endif /* __ESCAPE_LIBGEN_H__ */ | ||