summaryrefslogtreecommitdiff
path: root/el.h
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2019-09-10 13:55:44 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2019-09-10 13:55:44 +0000
commit3150625201d9c293e5c34b19b8a2d48a27da5f07 (patch)
tree4b83d615adb9f3870c56fd4e3caf62956df0f12c /el.h
parent8c36b0434ca4a5ba6df2724542048eb219af7a34 (diff)
Notes
Diffstat (limited to 'el.h')
-rw-r--r--el.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/el.h b/el.h
index eb95a3ed9e8b..b0d174eb62f6 100644
--- a/el.h
+++ b/el.h
@@ -1,4 +1,4 @@
-/* $NetBSD: el.h,v 1.43 2017/09/05 18:07:59 christos Exp $ */
+/* $NetBSD: el.h,v 1.45 2019/07/23 10:18:52 christos Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -55,7 +55,6 @@
#define NO_TTY 0x02
#define EDIT_DISABLED 0x04
#define UNBUFFERED 0x08
-#define CHARSET_IS_UTF8 0x10
#define NARROW_HISTORY 0x40
#define NO_RESET 0x80
@@ -90,6 +89,7 @@ typedef struct el_state_t {
* Until we come up with something better...
*/
#define el_malloc(a) malloc(a)
+#define el_calloc(a,b) calloc(a, b)
#define el_realloc(a,b) realloc(a, b)
#define el_free(a) free(a)