config.h revision 1.16
1/*	$OpenBSD: config.h,v 1.16 2017/08/01 14:30:05 deraadt 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 job control? */
15#define JOBS 1
16
17/* Include brace-expansion? */
18#define BRACE_EXPAND 1
19
20/* Include any history? */
21#define HISTORY 1
22
23/* Strict POSIX behaviour? */
24/* #undef POSIXLY_CORRECT */
25
26/* Specify default $ENV? */
27/* #undef DEFAULT_ENV */
28
29/*
30 * End of configuration stuff for PD ksh.
31 */
32
33#if defined(EMACS) || defined(VI)
34# define	EDIT
35#else
36# undef		EDIT
37#endif
38
39/* Editing implies history */
40#if defined(EDIT) && !defined(HISTORY)
41# define HISTORY
42#endif /* EDIT */
43
44#endif /* CONFIG_H */
45