1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: add missing unistd.h include
Author: Steve Langasek <steve.langasek@canonical.com>
Bug-Debian: https://bugs.debian.org/1066286
Last-Update: 2024-04-09
Forwarded: no
Index: das-watchdog-0.9.0/test_rt.c
===================================================================
--- das-watchdog-0.9.0.orig/test_rt.c
+++ das-watchdog-0.9.0/test_rt.c
@@ -4,6 +4,7 @@
#include <sys/time.h>
#include <time.h>
#include <sched.h>
+#include <unistd.h>
int main() {
struct sched_param params;
|