Home | History | Annotate | Line # | Download | only in ksh
      1  1.7  kamil /*	$NetBSD: conf-end.h,v 1.7 2017/06/30 02:38:09 kamil Exp $	*/
      2  1.2    tls 
      3  1.1    jtc /*
      4  1.1    jtc  * End of configuration stuff for PD ksh.
      5  1.1    jtc  *
      6  1.7  kamil  * RCSid: $NetBSD: conf-end.h,v 1.7 2017/06/30 02:38:09 kamil Exp $
      7  1.1    jtc  */
      8  1.1    jtc 
      9  1.1    jtc #if defined(EMACS) || defined(VI)
     10  1.1    jtc # define	EDIT
     11  1.1    jtc #else
     12  1.1    jtc # undef		EDIT
     13  1.1    jtc #endif
     14  1.1    jtc 
     15  1.1    jtc /* Editing implies history */
     16  1.1    jtc #if defined(EDIT) && !defined(HISTORY)
     17  1.1    jtc # define HISTORY
     18  1.1    jtc #endif /* EDIT */
     19  1.1    jtc 
     20  1.3  kamil #if defined(HISTORY) && (!defined(COMPLEX_HISTORY) || !defined(HAVE_FLOCK))
     21  1.1    jtc # undef COMPLEX_HISTORY
     22  1.1    jtc # define EASY_HISTORY			/* sjg's trivial history file */
     23  1.1    jtc #endif
     24  1.1    jtc 
     25  1.1    jtc #ifdef HAVE_GCC_FUNC_ATTR
     26  1.1    jtc # define GCC_FUNC_ATTR(x)	__attribute__((x))
     27  1.1    jtc # define GCC_FUNC_ATTR2(x,y)	__attribute__((x,y))
     28  1.1    jtc #else
     29  1.1    jtc # define GCC_FUNC_ATTR(x)
     30  1.1    jtc # define GCC_FUNC_ATTR2(x,y)
     31  1.1    jtc #endif /* HAVE_GCC_FUNC_ATTR */
     32