Module Name: src
Committed By: martin
Date: Mon Dec 3 10:53:29 UTC 2018
Modified Files:
src/bin/sh: trap.h
Log Message:
Make pendingsigs forward declaration match the definition.
To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 src/bin/sh/trap.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/bin/sh/trap.h
diff -u src/bin/sh/trap.h:1.24 src/bin/sh/trap.h:1.25
--- src/bin/sh/trap.h:1.24 Mon Dec 3 06:43:19 2018
+++ src/bin/sh/trap.h Mon Dec 3 10:53:29 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: trap.h,v 1.24 2018/12/03 06:43:19 kre Exp $ */
+/* $NetBSD: trap.h,v 1.25 2018/12/03 10:53:29 martin Exp $ */
/*-
* Copyright (c) 1991, 1993
@@ -34,7 +34,7 @@
* @(#)trap.h 8.3 (Berkeley) 6/5/95
*/
-extern volatile int pendingsigs;
+extern volatile sig_atomic_t pendingsigs;
extern int traps_invalid;