fix breakage from last commit: forgot to include ksigaction.h

this file can be overridden by a same-named file in an arch dir.
This commit is contained in:
Rich Felker 2012-07-11 02:44:55 -04:00
commit 0b637798cd

View file

@ -0,0 +1,6 @@
struct k_sigaction {
void (*handler)(int);
unsigned long flags;
void (*restorer)(void);
long mask[2];
};