1N/A/***********************************************************************
1N/A* *
1N/A* This software is part of the ast package *
1N/A* Copyright (c) 1982-2011 AT&T Intellectual Property *
1N/A* and is licensed under the *
1N/A* Common Public License, Version 1.0 *
1N/A* by AT&T Intellectual Property *
1N/A* *
1N/A* A copy of the License is available at *
1N/A* http://www.opensource.org/licenses/cpl1.0.txt *
1N/A* (with md5 checksum 059e8cd6165cb4c31e351f2b69388fd9) *
1N/A* *
1N/A* Information and Software Systems Research *
1N/A* AT&T Research *
1N/A* Florham Park NJ *
1N/A* *
1N/A* David Korn <dgk@research.att.com> *
1N/A* *
1N/A***********************************************************************/
1N/A/*
1N/A * Ksh - AT&T Labs
1N/A * Written by David Korn
1N/A * This file defines all the read/write shell global variables
1N/A */
1N/A
1N/A#include "defs.h"
1N/A#include "jobs.h"
1N/A#include "shlex.h"
1N/A#include "edit.h"
1N/A#include "timeout.h"
1N/A
1N/AShell_t sh = {0};
1N/Astruct shared *shgd;
1N/A#ifdef __IMPORT__
1N/A Shell_t *_imp__sh = &sh;
1N/A#endif
1N/A
1N/ADtdisc_t _Nvdisc =
1N/A{
1N/A offsetof(Namval_t,nvname), -1 , 0, 0, 0, nv_compare
1N/A};
1N/A
1N/A/* reserve room for writable state table */
1N/Achar *sh_lexstates[ST_NONE] = {0};
1N/A
1N/Astruct jobs job = {0};
1N/Aint32_t sh_mailchk = 600;
1N/A