/* ISC license. */ #ifndef S6RCD_TRANSITION_H #define S6RCD_TRANSITION_H #include #include /* Transitions */ typedef struct transition_s transition_t, *transition_t_ref ; struct transition_s { pid_t pid ; } ; #define TRANSITION_ZERO { .pid = 0 } extern uint32_t ntransitions ; transitions_t *transitions ; #endif