Avoid lint failure in setjmp.h; lint doesn't handle __attribute__
modified declarations.
This commit is contained in:
parent
eba562cd86
commit
d05f876265
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: setjmp.h,v 1.5 2002/09/06 15:35:41 scw Exp $ */
|
||||
/* $NetBSD: setjmp.h,v 1.6 2004/05/13 19:54:25 he Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright 2002 Wasabi Systems, Inc.
|
||||
@ -136,7 +136,11 @@
|
||||
#define _JBLEN 110
|
||||
#else
|
||||
#define _JBLEN 220
|
||||
#if !defined(__lint__)
|
||||
#define _JB_ATTRIBUTES __attribute__ ((__aligned__(8)))
|
||||
#else
|
||||
#define _JB_ATTRIBUTES /**/
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#endif /* _SH5_SETJMP_H */
|
||||
|
Loading…
Reference in New Issue
Block a user