blob: c40923f33f243c1ef4da3ca0a815550ee877d460 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
/* $OpenBSD: config.h,v 1.14 2011/03/14 21:20:00 okan Exp $ */
/* config.h. NOT generated automatically. */
/*
* This file, config.h, which is a part of pdksh (the public domain ksh),
* is placed in the public domain. It comes with no licence, warranty
* or guarantee of any kind (i.e., at your own risk).
*/
#ifndef CONFIG_H
#define CONFIG_H
/* Include emacs editing? */
#define EMACS 1
/* Include vi editing? */
#define VI 1
/* Include job control? */
#define JOBS 1
/* Include brace-expansion? */
#define BRACE_EXPAND 1
/* Include any history? */
#define HISTORY 1
/* Strict POSIX behaviour? */
/* #undef POSIXLY_CORRECT */
/* Specify default $ENV? */
/* #undef DEFAULT_ENV */
/* The number of bytes in a int. */
#define SIZEOF_INT 4
/*
* End of configuration stuff for PD ksh.
*/
#if defined(EMACS) || defined(VI)
# define EDIT
#else
# undef EDIT
#endif
/* Super small configuration-- no editing. */
#if defined(EDIT) && defined(NOEDIT)
# undef EDIT
# undef EMACS
# undef VI
#endif
/* Editing implies history */
#if defined(EDIT) && !defined(HISTORY)
# define HISTORY
#endif /* EDIT */
#endif /* CONFIG_H */
|