summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjlance2011-11-26 16:40:21 -0600
committerjlance2011-11-26 16:40:21 -0600
commitf757dc04435505df97b6350ce6bb2497192d8500 (patch)
tree983e6c6bf3a7ac72009da5642bd143169a8935fd
parentb6568a8cd9baa19e6bdd08e21e1c4abedd26e42e (diff)
downloadam_sysinfo-f757dc04435505df97b6350ce6bb2497192d8500.tar.gz
am_sysinfo-f757dc04435505df97b6350ce6bb2497192d8500.tar.xz
am_sysinfo-f757dc04435505df97b6350ce6bb2497192d8500.zip
Adding #include <stdlib> to remove warning messgage
Signed-off-by: Jeff Lance <j-lance1@ti.com>
-rw-r--r--oprofile_example/signal_parent.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/oprofile_example/signal_parent.c b/oprofile_example/signal_parent.c
index 5b91683..a028722 100644
--- a/oprofile_example/signal_parent.c
+++ b/oprofile_example/signal_parent.c
@@ -3,6 +3,7 @@
3#include <signal.h> 3#include <signal.h>
4#include <stdio.h> 4#include <stdio.h>
5#include <unistd.h> 5#include <unistd.h>
6#include <stdlib.h>
6 7
7volatile static int signal_parent = 0; 8volatile static int signal_parent = 0;
8 9