The R Project SVN R

Rev

Rev 42642 | Rev 81200 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 42642 Rev 53070
Line 69... Line 69...
69
/*
69
/*
70
 * A pointer to a signal handler function. A signal handler takes a
70
 * A pointer to a signal handler function. A signal handler takes a
71
 * single int, which is the signal it handles.
71
 * single int, which is the signal it handles.
72
*/
72
*/
73
typedef	void (*sighandler_t)(int nSig);
73
typedef	void (*sighandler_t)(int nSig);
-
 
74
/* mingw-w64's sys/types.h also defines this and we want this defn */ 
74
#ifndef _SIGSET_T_
75
#ifndef _SIGSET_T_
75
#define	_SIGSET_T_
76
#define	_SIGSET_T_
76
typedef int sigset_t;
77
typedef int sigset_t;
77
#endif	/* Not _SIGSET_T_ */
78
#endif	/* Not _SIGSET_T_ */
78
 
79