aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar David Adam <zanchey@ucc.gu.uwa.edu.au>2016-05-09 08:44:41 +0100
committerGravatar David Adam <zanchey@ucc.gu.uwa.edu.au>2016-05-18 22:39:20 +0000
commit6a5d89669e1bd2a5c98e61504d73d58ace11c880 (patch)
treed4ff28f9e8e2a345e87f673116f92bc6f4a526a8 /src
parente39628bbe934a895ec6accac2446919ff8f13563 (diff)
configure: drop tests for ancient platforms
Work on #2999.
Diffstat (limited to 'src')
-rw-r--r--src/fallback.cpp8
-rw-r--r--src/fallback.h8
2 files changed, 0 insertions, 16 deletions
diff --git a/src/fallback.cpp b/src/fallback.cpp
index a5cff93d..f5638e81 100644
--- a/src/fallback.cpp
+++ b/src/fallback.cpp
@@ -42,14 +42,6 @@
#include "fallback.h" // IWYU pragma: keep
#include "util.h" // IWYU pragma: keep
-#ifdef TPUTS_KLUDGE
-int tputs(const char *str, int affcnt, int (*fish_putc)(tputs_arg_t)) {
- while (*str) {
- fish_putc(*str++);
- }
-}
-#endif
-
#ifdef TPARM_SOLARIS_KLUDGE
#undef tparm
diff --git a/src/fallback.h b/src/fallback.h
index 59eba224..97c72b77 100644
--- a/src/fallback.h
+++ b/src/fallback.h
@@ -57,14 +57,6 @@ struct winsize {
#endif
-#ifdef TPUTS_KLUDGE
-
-/// Linux on PPC seems to have a tputs implementation that sometimes behaves strangely. This
-/// fallback seems to fix things.
-int tputs(const char *str, int affcnt, int (*fish_putc)(tputs_arg_t));
-
-#endif
-
#ifdef TPARM_SOLARIS_KLUDGE
/// Solaris tparm has a set fixed of paramters in it's curses implementation, work around this here.
#define tparm tparm_solaris_kludge