We no longer care about numerical runlevels, #184733.

This commit is contained in:
Roy Marples
2007-07-10 11:42:56 +00:00
parent ae160bf293
commit 1cda2a2036
3 changed files with 126 additions and 154 deletions

View File

@ -8,8 +8,13 @@
#ifndef __RC_H__
#define __RC_H__
#define SENTINEL
#ifdef __GNUC__
# define SENTINEL __attribute__ ((__sentinel__))
# define GCC_VERSION (__GNUC__ * 1000 + __GNUC__MINOR )
# if (GCC_VERSION >= 3005)
# undef SENTINEL
# define SENTINEL __attribute__ ((__sentinel__))
# endif
#endif
#include <sys/types.h>