Update contrib.
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 "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
33 #include <sys/signal.h>
35 /** Atomic entity type (ANSI)
37 typedef int sig_atomic_t;
41 #define SIG_DFL ((void (*)())0)
45 #define SIG_IGN ((void (*)())1)
49 #define SIG_ERR ((void (*)())-1)
51 typedef void (*_sig_func_ptr) ();
53 extern _sig_func_ptr signal(int, _sig_func_ptr);
54 extern int raise(int);
59 #endif /* _SIGNAL_H_ */