config.h revision 1.18
1/*	$OpenBSD: config.h,v 1.18 2018/01/14 16:04:21 anton 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 any history? */
15#define HISTORY 1
16
17/* Strict POSIX behaviour? */
18/* #undef POSIXLY_CORRECT */
19
20/* Specify default $ENV? */
21/* #undef DEFAULT_ENV */
22
23/*
24 * End of configuration stuff for PD ksh.
25 */
26
27#if defined(EMACS) || defined(VI)
28# define	EDIT
29#else
30# undef		EDIT
31#endif
32
33/* Editing implies history */
34#if defined(EDIT) && !defined(HISTORY)
35# define HISTORY
36#endif /* EDIT */
37
38#endif /* CONFIG_H */
39