loksh-noxz

[fork] a Linux port of OpenBSD's ksh
git clone https://noxz.tech/git/loksh-noxz.git
Log | Files | README

config.h
1/*	$OpenBSD: config.h,v 1.19 2018/01/15 14:58:05 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/* Strict POSIX behaviour? */
15/* #undef POSIXLY_CORRECT */
16
17/* Specify default $ENV? */
18/* #undef DEFAULT_ENV */
19
20/*
21 * End of configuration stuff for PD ksh.
22 */
23
24#if !defined(EMACS) && !defined(VI)
25# error "Define either EMACS or VI."
26#endif
27
28#endif /* CONFIG_H */