1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: Define _GNU_SOURCE for sigpause(3) visibility
Bug-Debian: https://bugs.debian.org/1074841
Forwarded: no
Author: Peter Pentchev <roam@ringlet.net>
Last-Update: 2024-08-07
--- a/unix/sig_suspend.c
+++ b/unix/sig_suspend.c
@@ -15,6 +15,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#define _GNU_SOURCE
#include <signal.h>
#include "sig.h"
#include "sysdeps.h"
|