/***********************************************************************
* *
* This software is part of the ast package *
* Copyright (c) 1982-2011 AT&T Intellectual Property *
* and is licensed under the *
* Eclipse Public License, Version 1.0 *
* by AT&T Intellectual Property *
* *
* A copy of the License is available at *
* (with md5 checksum b35adb5213ca9657e911e9befb180842) *
* *
* Information and Software Systems Research *
* AT&T Research *
* Florham Park NJ *
* *
* David Korn <dgk@research.att.com> *
* *
***********************************************************************/
#pragma prototyped
#ifndef SH_SIGBITS
/*
* UNIX shell
* S. R. Bourne
* Rewritten by David Korn
*
*/
#include <sig.h>
#include <setjmp.h>
#include <error.h>
#include <sfio.h>
#include "FEATURE/sigfeatures"
#ifndef SIGWINCH
# ifdef SIGWIND
# else
# ifdef SIGWINDOW
# endif
# endif
#endif
typedef void (*SH_SIGTYPE)(int,void(*)(int));
/*
* These are longjmp values
*/
struct openlist
{
};
struct checkpt
{
int topfd;
int mode;
#if (ERROR_VERSION >= 20030214L)
#else
#endif
};
)
extern void sh_fault(int);
extern void sh_done(void*,int);
extern void sh_sigclear(int);
extern void sh_sigdone(void);
extern void sh_siginit(void*);
extern void sh_sigtrap(int);
extern void sh_sigreset(int);
extern void *sh_timeradd(unsigned long,int ,void (*)(void*),void*);
extern void timerdel(void*);
extern const char e_alarm[];
#endif /* !SH_SIGBITS */