#ifndef __PERMS_H__
#define __PERMS_H__ 1

#include "pbacktrace.h"
#include "psignal.h"
#include "ptrace.h"
#include "visible.h"
#include "impread.h"

#ifdef NULL // The level of namespace pollution from C is causing real problems :-(
            // Anything in C that is all uppercase could potentially cause a clash.
            // and I am struggling with calling the linux C library from Imp77...
            // (see stdlib.inc for testing and examples)
#undef NULL
#endif

#ifdef FALSE
#undef FALSE
#endif
#define False (0!=0)

#ifdef TRUE
#undef TRUE
#endif
#define True (0==0)


#endif // __PERMS_H__
