[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Libunwind-devel] [PATCH 6/6] Add missing <signal.h> include directive
From: |
Ken Werner |
Subject: |
[Libunwind-devel] [PATCH 6/6] Add missing <signal.h> include directive |
Date: |
Thu, 27 Oct 2011 10:38:12 +0200 |
The testcase tests/Gtest-dyn1.c uses the signal() function and should
therefore include the corresponding header file.
Signed-off-by: Ken Werner <address@hidden>
---
tests/Gtest-dyn1.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/tests/Gtest-dyn1.c b/tests/Gtest-dyn1.c
index fcb773d..e084813 100644
--- a/tests/Gtest-dyn1.c
+++ b/tests/Gtest-dyn1.c
@@ -30,7 +30,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE. */
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
-
+#include <signal.h>
#include <sys/mman.h>
#if UNW_TARGET_ARM
--
1.7.5.4
- [Libunwind-devel] [PATCH 0/6] Enhance portability of libuwind, Ken Werner, 2011/10/27
- [Libunwind-devel] [PATCH 1/6] Include <sys/mman.h> to have MAP_ANONYMOUS defined, Ken Werner, 2011/10/27
- [Libunwind-devel] [PATCH 5/6] Define GNU and processor specific values for the Phdr p_type field, Ken Werner, 2011/10/27
- [Libunwind-devel] [PATCH 6/6] Add missing <signal.h> include directive,
Ken Werner <=
- [Libunwind-devel] [PATCH 2/6] UNW_REMOTE_ONLY fixes, Ken Werner, 2011/10/27
- [Libunwind-devel] [PATCH 4/6] [ARM] Add support for systems that don't support ucontext.h, Ken Werner, 2011/10/27
- [Libunwind-devel] [PATCH 3/6] Prevent the use of struct dl_phdr_info outside of dl_iterate_phdr, Ken Werner, 2011/10/27