[INTERPRETER]

* BUG: Defines sighandler_t when it is not defined by the system includes.


git-svn-id: svn://localhost/gambas/trunk@1212 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Benoît Minisini 2008-03-21 00:35:39 +00:00
parent 94b347f461
commit 7759900148

View File

@ -48,6 +48,12 @@
#include <sys/types.h>
#include <sys/stat.h>
#ifdef OS_CYGWIN
typedef void (*sighandler_t) (int);
#endif
#if defined(OS_FREEBSD) || defined(OS_OPENBSD)
/* Get definition for PATH_MAX */