We no longer care about numerical runlevels, #184733.
This commit is contained in:
7
src/rc.h
7
src/rc.h
@ -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>
|
||||
|
Reference in New Issue
Block a user