Added nslint
This commit is contained in:
parent
9bbbc17676
commit
5894b1b168
25 changed files with 13757 additions and 0 deletions
49
dns/nslint-2.1a8/lbl/gnuc.h
Normal file
49
dns/nslint-2.1a8/lbl/gnuc.h
Normal file
|
@ -0,0 +1,49 @@
|
|||
/* @(#) $Id: gnuc.h,v 1.4 2006/04/30 03:58:45 leres Exp $ (LBL) */
|
||||
|
||||
/* Define __P() macro, if necessary */
|
||||
#ifndef __P
|
||||
#if __STDC__
|
||||
#define __P(protos) protos
|
||||
#else
|
||||
#define __P(protos) ()
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* inline foo */
|
||||
#ifdef __GNUC__
|
||||
#define inline __inline
|
||||
#else
|
||||
#define inline
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Handle new and old "dead" routine prototypes
|
||||
*
|
||||
* For example:
|
||||
*
|
||||
* __dead void foo(void) __attribute__((noreturn));
|
||||
*
|
||||
*/
|
||||
#ifdef __GNUC__
|
||||
#ifndef __dead
|
||||
#if __GNUC__ >= 4
|
||||
#define __dead
|
||||
#define noreturn __noreturn__
|
||||
#else
|
||||
#define __dead volatile
|
||||
#define noreturn volatile
|
||||
#endif
|
||||
#endif
|
||||
#if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5)
|
||||
#ifndef __attribute__
|
||||
#define __attribute__(args)
|
||||
#endif
|
||||
#endif
|
||||
#else
|
||||
#ifndef __dead
|
||||
#define __dead
|
||||
#endif
|
||||
#ifndef __attribute__
|
||||
#define __attribute__(args)
|
||||
#endif
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue