PinChangeInt library- To attach interrupts to multiple Arduino (Uno/Mega) pins

hey,

I like to use the PINCHANGE Library with the Arduino DUE.
But I still get this failure:

In file included from FirstTask.ino:24:
.....\Arduino\libraries\PinChangeInt/PinChangeInt.h:103: fatal error: new.h: No such file or directory
compilation terminated.

Maybe some know this failure?

I need to use the pinchange lib because I need to know of many pins, which pin has changed without using for every pin a own function like this:

     attachInterrupt(1, action1, HIGH);
attachInterrupt(2, action2, HIGH);

Maybe someone knows also an alternative solution :slight_smile: