File: missing-assert-h.patch

package info (click to toggle)
ntirpc 7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,584 kB
  • sloc: ansic: 34,884; cpp: 1,403; python: 590; sh: 68; makefile: 13
file content (14 lines) | stat: -rw-r--r-- 365 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Description: add missing assert.h include to work_pool.c
Author: Christoph Martin <chrism@debian.org>
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/src/work_pool.c
+++ b/src/work_pool.c
@@ -55,6 +55,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <errno.h>
+#include <assert.h>
 #include <intrinsic.h>
 #include <urcu-bp.h>