| commit | ef4428ad284e7c10aaf04a6e62b41e8eb0cc2852 | [log] [tgz] |
|---|---|---|
| author | Michael K. Edwards <m.k.edwards@gmail.com> | Sun Mar 06 20:39:18 2011 +0000 |
| committer | Petr Machata <pmachata@redhat.com> | Mon Aug 08 18:39:58 2011 +0200 |
| tree | 3db00ef37077c09ca0252f59fb91b6679271236c | |
| parent | e276cf41371cd5c5a722043658ccc15321aa15ac [diff] [blame] |
Multiple-inclusion guard for common.h
diff --git a/common.h b/common.h index 70e4a5a..9f1d40e 100644 --- a/common.h +++ b/common.h
@@ -1,3 +1,6 @@ +#ifndef COMMON_H +#define COMMON_H + #if defined(HAVE_LIBUNWIND) #include <libunwind.h> #endif /* defined(HAVE_LIBUNWIND) */ @@ -274,3 +277,5 @@ extern void arch_check_dbg(Process *proc); extern struct ltelf main_lte; + +#endif