summaryrefslogtreecommitdiff
path: root/bin/ksh/sh.h
diff options
context:
space:
mode:
authorJason Downs <downsj@cvs.openbsd.org>1996-10-01 02:05:58 +0000
committerJason Downs <downsj@cvs.openbsd.org>1996-10-01 02:05:58 +0000
commit7af587866799c05822d7ce6c84a82699bd1eb07b (patch)
tree5e4debc6d5f3366eed1af6d3ebfd5a9aaf5c2d1d /bin/ksh/sh.h
parent681a20ebbbbf2f359b11be4310b1ccc9428d48cf (diff)
Integrate pdksh 5.2.9.
Diffstat (limited to 'bin/ksh/sh.h')
-rw-r--r--bin/ksh/sh.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/bin/ksh/sh.h b/bin/ksh/sh.h
index f6578427d9c..b05a49d896e 100644
--- a/bin/ksh/sh.h
+++ b/bin/ksh/sh.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: sh.h,v 1.2 1996/08/19 20:08:58 downsj Exp $ */
+/* $OpenBSD: sh.h,v 1.3 1996/10/01 02:05:47 downsj Exp $ */
/*
* Public Domain Bourne/Korn shell
@@ -682,6 +682,14 @@ EXTERN int x_cols I__(80); /* tty columns */
#define OBRACE '{'
#define CBRACE '}'
+/* Determine the location of the system (common) profile */
+#ifndef KSH_SYSTEM_PROFILE
+# ifdef __NeXT
+# define KSH_SYSTEM_PROFILE "/etc/profile.std"
+# else /* __NeXT */
+# define KSH_SYSTEM_PROFILE "/etc/profile"
+# endif /* __NeXT */
+#endif /* KSH_SYSTEM_PROFILE */
#include "shf.h"
#include "table.h"