aboutsummaryrefslogtreecommitdiffhomepage
path: root/fallback.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-02-26 18:31:08 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-02-26 18:31:08 -0800
commitc55cbd3f2f003ea6e36727f8b985e880d6aded85 (patch)
tree6d7cb6ab8ff2b485197e07c5e30e879c3dae9444 /fallback.h
parentd89fcdcc5fe13e332ed6cb58998c052597c3f684 (diff)
Diffstat (limited to 'fallback.h')
-rw-r--r--fallback.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/fallback.h b/fallback.h
index b9460f2b..82cef85d 100644
--- a/fallback.h
+++ b/fallback.h
@@ -346,12 +346,13 @@ size_t wcslcpy(wchar_t *dst, const wchar_t *src, size_t siz);
#endif
-#ifdef HAVE_BROKEN_DEL_CURTERM
-
/**
BSD del_curterm seems to do a double-free. We redefine it as a no-op
*/
-#define del_curterm(oterm) OK
+#ifdef HAVE_BROKEN_DEL_CURTERM
+ #define fish_del_curterm(X) OK
+#else
+ #define fish_del_curterm(X) del_curterm(X)
#endif
#ifndef HAVE_LRAND48_R