diff options
author | andrew <andrew@FreeBSD.org> | 2013-04-06 00:47:33 +0000 |
---|---|---|
committer | andrew <andrew@FreeBSD.org> | 2013-04-06 00:47:33 +0000 |
commit | 027510f594812f9ad362fc78557325f226b9da13 (patch) | |
tree | 706e618e91915f3b9daee4c9d2ef8e69f923dfc1 | |
parent | 1b6c520949719eb616178e223a4131f362b2fa92 (diff) | |
download | FreeBSD-src-027510f594812f9ad362fc78557325f226b9da13.zip FreeBSD-src-027510f594812f9ad362fc78557325f226b9da13.tar.gz |
Hide non-assembler bits behind #ifndef __ASSEMBLER__
-rw-r--r-- | sys/arm/include/setjmp.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/arm/include/setjmp.h b/sys/arm/include/setjmp.h index 638dc3e..954e449 100644 --- a/sys/arm/include/setjmp.h +++ b/sys/arm/include/setjmp.h @@ -87,10 +87,13 @@ /* Only valid with the _JB_MAGIC_SETJMP magic */ #define _JB_SIGMASK 25 + +#ifndef __ASSEMBLER__ #if __BSD_VISIBLE || __POSIX_VISIBLE || __XSI_VISIBLE typedef struct _sigjmp_buf { int _sjb[_JBLEN + 1]; } sigjmp_buf[1]; #endif typedef struct _jmp_buf { int _jb[_JBLEN + 1]; } jmp_buf[1]; +#endif #endif /* !_MACHINE_SETJMP_H_ */ |