aboutsummaryrefslogtreecommitdiff
path: root/bin/sh/shell.h
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1996-09-01 10:22:36 +0000
committerPeter Wemm <peter@FreeBSD.org>1996-09-01 10:22:36 +0000
commitaa9caaf65748ace0f3cd08c2deaf3ef3048d6e4d (patch)
treee47ab3981b495c675a987dd1e943d1f4c823f314 /bin/sh/shell.h
parenteaed89032e2fd68793cbfe677ce15e06b46b11dd (diff)
Notes
Diffstat (limited to 'bin/sh/shell.h')
-rw-r--r--bin/sh/shell.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/bin/sh/shell.h b/bin/sh/shell.h
index d038f91b81f0..0d42e9dc556b 100644
--- a/bin/sh/shell.h
+++ b/bin/sh/shell.h
@@ -33,8 +33,8 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * @(#)shell.h 8.1 (Berkeley) 5/31/93
- * $Id: shell.h,v 1.2 1994/09/24 02:58:15 davidg Exp $
+ * @(#)shell.h 8.2 (Berkeley) 5/4/95
+ * $Id: shell.h,v 1.3 1995/08/27 20:26:44 joerg Exp $
*/
/*
@@ -57,7 +57,9 @@
#ifndef BSD
#define BSD 1
#endif
-/* #define DEBUG 1 */
+#ifndef DEBUG
+#define DEBUG 1
+#endif
#ifdef __STDC__
typedef void *pointer;
@@ -79,7 +81,7 @@ extern char nullstr[1]; /* null string */
#ifdef DEBUG
-#define TRACE(param) trace param
+#define TRACE(param) shtrace param
#else
#define TRACE(param)
#endif