2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
36 #include <sys/signal.h>
38 /** Atomic entity type (ANSI)
40 typedef int sig_atomic_t;
44 #define SIG_DFL ((void (*)())0)
48 #define SIG_IGN ((void (*)())1)
52 #define SIG_ERR ((void (*)())-1)
54 typedef void (*_sig_func_ptr) ();
56 extern _sig_func_ptr signal(int, _sig_func_ptr);
57 extern int raise(int);
62 #endif /* _SIGNAL_H_ */