From 0b637798cd1d44778b3386c04cea5f8a2701acda Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Wed, 11 Jul 2012 02:44:55 -0400 Subject: fix breakage from last commit: forgot to include ksigaction.h this file can be overridden by a same-named file in an arch dir. --- src/internal/ksigaction.h | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/internal/ksigaction.h (limited to 'src/internal') diff --git a/src/internal/ksigaction.h b/src/internal/ksigaction.h new file mode 100644 index 00000000..8bdfd1d8 --- /dev/null +++ b/src/internal/ksigaction.h @@ -0,0 +1,6 @@ +struct k_sigaction { + void (*handler)(int); + unsigned long flags; + void (*restorer)(void); + long mask[2]; +}; -- cgit v1.2.1