summaryrefslogtreecommitdiff
path: root/examples/dte/compat.c
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2026-01-21 22:52:54 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2026-01-21 22:52:54 +0100
commitdcacc00e3750300617ba6e16eb346713f91a783a (patch)
tree38e2d4fb5ed9d119711d4295c6eda4b014af73fd /examples/dte/compat.c
parent58dac10aeb8f5a041c46bddbeaf4c7966a99b998 (diff)
downloadcrep-dcacc00e3750300617ba6e16eb346713f91a783a.tar.gz
Remove testing data
Diffstat (limited to 'examples/dte/compat.c')
-rw-r--r--examples/dte/compat.c35
1 files changed, 0 insertions, 35 deletions
diff --git a/examples/dte/compat.c b/examples/dte/compat.c
deleted file mode 100644
index 9a26950..0000000
--- a/examples/dte/compat.c
+++ /dev/null
@@ -1,35 +0,0 @@
1#include "compat.h"
2
3const char feature_string[] =
4 ""
5#if HAVE_DUP3
6 " dup3"
7#endif
8#if HAVE_PIPE2
9 " pipe2"
10#endif
11#if HAVE_FSYNC
12 " fsync"
13#endif
14#if HAVE_MEMMEM
15 " memmem"
16#endif
17#if HAVE_SIG2STR
18 " sig2str"
19#endif
20#if HAVE_SIGABBREV_NP && !HAVE_SIG2STR
21 " sigabbrev_np"
22#endif
23#if HAVE_TIOCGWINSZ
24 " TIOCGWINSZ"
25#endif
26#if HAVE_TCGETWINSIZE && !HAVE_TIOCGWINSZ
27 " tcgetwinsize"
28#endif
29#if HAVE_TIOCNOTTY
30 " TIOCNOTTY"
31#endif
32#if HAVE_POSIX_MADVISE
33 " posix_madvise"
34#endif
35;