File: 0001-espctag.c-Add-missing-header-for-waitpid-2.patch

package info (click to toggle)
espctag 0.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 180 kB
  • sloc: ansic: 672; makefile: 5
file content (21 lines) | stat: -rw-r--r-- 492 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From: Boyuan Yang <byang@debian.org>
Date: Thu, 28 Nov 2024 10:08:42 -0500
Subject: espctag.c: Add missing header for waitpid(2)

Bug-Debian: https://bugs.debian.org/1066640
---
 src/espctag.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/espctag.c b/src/espctag.c
index 2c024b7..d5a66e8 100644
--- a/src/espctag.c
+++ b/src/espctag.c
@@ -29,6 +29,7 @@
 #include <dirent.h>
 #include <argp.h>
 #include <argz.h>
+#include <sys/wait.h>
 #include <spctag.h>
 
 #include "constants.h"