fix breakage from last commit: forgot to include ksigaction.h
authorRich Felker <dalias@aerifal.cx>
Wed, 11 Jul 2012 06:44:55 +0000 (02:44 -0400)
committerRich Felker <dalias@aerifal.cx>
Wed, 11 Jul 2012 06:44:55 +0000 (02:44 -0400)
this file can be overridden by a same-named file in an arch dir.

src/internal/ksigaction.h [new file with mode: 0644]

diff --git a/src/internal/ksigaction.h b/src/internal/ksigaction.h
new file mode 100644 (file)
index 0000000..8bdfd1d
--- /dev/null
@@ -0,0 +1,6 @@
+struct k_sigaction {
+       void (*handler)(int);
+       unsigned long flags;
+       void (*restorer)(void);
+       long mask[2];
+};