From: Ulrich Drepper Date: Sat, 6 Apr 2002 04:05:14 +0000 (+0000) Subject: Protect against multiple inclusion. X-Git-Tag: glibc-2.16-ports-before-merge~1720 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=37296da75ed10e0c9b5fece07e62aa3d7f47b4ec;p=thirdparty%2Fglibc.git Protect against multiple inclusion. --- diff --git a/sysdeps/arm/linuxthreads/pt-machine.h b/sysdeps/arm/linuxthreads/pt-machine.h index cab724a668c..11127eac1a0 100644 --- a/sysdeps/arm/linuxthreads/pt-machine.h +++ b/sysdeps/arm/linuxthreads/pt-machine.h @@ -19,6 +19,8 @@ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#ifndef _PT_MACHINE_H +#define _PT_MACHINE_H 1 #ifndef PT_EI # define PT_EI extern inline @@ -49,3 +51,5 @@ testandset (int *spinlock) of the stack, just something somewhere in the current frame. */ #define CURRENT_STACK_FRAME stack_pointer register char * stack_pointer __asm__ ("sp"); + +#endif /* pt-machine.h */