]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Enclose header in an #ifdef statement to prevent it from being included twice.
authorUlrich Drepper <drepper@redhat.com>
Wed, 1 Sep 1999 16:45:06 +0000 (16:45 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 1 Sep 1999 16:45:06 +0000 (16:45 +0000)
sysdeps/unix/sysv/linux/arm/bits/armsigctx.h

index ba78c03a898a38000b0cf096582993994ddae592..3435a961bc1e618fc01769a9c348593d528f7d25 100644 (file)
@@ -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 */