summaryrefslogtreecommitdiff
path: root/bin/ksh/sh.h
diff options
context:
space:
mode:
Diffstat (limited to 'bin/ksh/sh.h')
-rw-r--r--bin/ksh/sh.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/bin/ksh/sh.h b/bin/ksh/sh.h
index 65b083cfbee..9b017c48d8c 100644
--- a/bin/ksh/sh.h
+++ b/bin/ksh/sh.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: sh.h,v 1.24 2004/12/18 22:43:58 millert Exp $ */
+/* $OpenBSD: sh.h,v 1.25 2004/12/22 17:14:34 millert Exp $ */
/*
* Public Domain Bourne/Korn shell
@@ -13,6 +13,7 @@
#include <stdio.h>
#include <sys/types.h>
#include <setjmp.h>
+#include <stdbool.h>
#include <stddef.h>
#include <stdlib.h>
#include <unistd.h>
@@ -47,10 +48,6 @@
#define EXECSHELL _PATH_BSHELL
#define EXECSHELL_STR "EXECSHELL"
-typedef int bool_t;
-#define FALSE 0
-#define TRUE 1
-
#define NELEM(a) (sizeof(a) / sizeof((a)[0]))
#define sizeofN(type, n) (sizeof(type) * (n))
#define BIT(i) (1<<(i)) /* define bit in flag */