diff options
| author | David Bremner <david@tethera.net> | 2021-10-28 09:32:34 -0300 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2021-12-04 12:36:08 -0400 |
| commit | 1643c0459a496b45b601d91e0089fac507a2a6d1 (patch) | |
| tree | 824ca82521b586bcbc4fd8d15af590418d5814ff /test/notmuch-test.h | |
| parent | 18cdd21b8b2ef056062700607eade43909c32cd2 (diff) | |
test: move system includes to notmuch-test.h
This removes some redudant includes, and will also make it easier to
introduce "#define _GNU_SOURCE", which must come before all system
includes.
Diffstat (limited to 'test/notmuch-test.h')
| -rw-r--r-- | test/notmuch-test.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/notmuch-test.h b/test/notmuch-test.h index 34dbb8e0..3a0e90a3 100644 --- a/test/notmuch-test.h +++ b/test/notmuch-test.h @@ -1,7 +1,13 @@ #ifndef _NOTMUCH_TEST_H #define _NOTMUCH_TEST_H +#include <assert.h> #include <stdio.h> #include <stdlib.h> +#include <string.h> +#include <sys/wait.h> +#include <talloc.h> +#include <unistd.h> + #include <notmuch.h> inline static void |
