summaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-09-01 16:45:06 +0000
committerUlrich Drepper <drepper@redhat.com>1999-09-01 16:45:06 +0000
commit689cd45252daa82cbf5c77405c80a84e9fa17d30 (patch)
tree8e9c7faae8b647ff74d3fb0df3544288b2f1eb96 /sysdeps
parentb8a255823e6fa4d2e69be3ca885c9f50a36b2ef5 (diff)
Enclose header in an #ifdef statement to prevent it from being included twice.
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/unix/sysv/linux/arm/bits/armsigctx.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/arm/bits/armsigctx.h b/sysdeps/unix/sysv/linux/arm/bits/armsigctx.h
index ba78c03a89..3435a961bc 100644
--- a/sysdeps/unix/sysv/linux/arm/bits/armsigctx.h
+++ b/sysdeps/unix/sysv/linux/arm/bits/armsigctx.h
@@ -1,5 +1,5 @@
/* Definition of `struct sigcontext' for Linux/ARM
- Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
+ Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -21,6 +21,9 @@
Fortunately 2.0 puts a magic number in the first word and this is not
a legal value for `trap_no', so we can tell them apart. */
+#ifndef __ARMSIGCTX_H
+#define __ARMSIGCTX_H 1
+
#include <asm/ptrace.h>
union k_sigcontext
@@ -59,3 +62,5 @@ union k_sigcontext
};
#define SIGCONTEXT_2_0_MAGIC 0x4B534154
+
+#endif /* bits/armsigctx.h */