config.h revision 1.17
1/*	$OpenBSD: config.h,v 1.17 2018/01/05 15:44:31 jca Exp $	*/
2
3/* config.h.  NOT generated automatically. */
4
5/*
6 * This file, config.h, which is a part of pdksh (the public domain ksh),
7 * is placed in the public domain.  It comes with no licence, warranty
8 * or guarantee of any kind (i.e., at your own risk).
9 */
10
11#ifndef CONFIG_H
12#define CONFIG_H
13
14/* Include brace-expansion? */
15#define BRACE_EXPAND 1
16
17/* Include any history? */
18#define HISTORY 1
19
20/* Strict POSIX behaviour? */
21/* #undef POSIXLY_CORRECT */
22
23/* Specify default $ENV? */
24/* #undef DEFAULT_ENV */
25
26/*
27 * End of configuration stuff for PD ksh.
28 */
29
30#if defined(EMACS) || defined(VI)
31# define	EDIT
32#else
33# undef		EDIT
34#endif
35
36/* Editing implies history */
37#if defined(EDIT) && !defined(HISTORY)
38# define HISTORY
39#endif /* EDIT */
40
41#endif /* CONFIG_H */
42