Browse Source

sigset-cvt-mask.h: add a guard to allow including it twice

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Peter S. Mazinger 13 years ago
parent
commit
c0a3eaf88a
1 changed files with 5 additions and 0 deletions
  1. 5 0
      libc/signal/sigset-cvt-mask.h

+ 5 - 0
libc/signal/sigset-cvt-mask.h

@@ -19,6 +19,9 @@
    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
    02111-1307 USA.  */
 
+#ifndef _SIGSET_CVT_MASK_H
+#define _SIGSET_CVT_MASK_H
+
 #include <string.h>
 
 static __inline__ void __attribute__ ((unused))
@@ -36,3 +39,5 @@ sigset_get_old_mask (const sigset_t *set)
 {
   return (unsigned int) set->__val[0];
 }
+
+#endif