1 /* ISC license. */
2 
3 #include <skalibs/tai.h>
4 #include <s6/s6-supervise.h>
5 
s6_dtally_pack(char * pack,s6_dtally_t const * d)6 void s6_dtally_pack (char *pack, s6_dtally_t const *d)
7 {
8   tain_pack(pack, &d->stamp) ;
9   pack[TAIN_PACK] = d->exitcode ;
10   pack[TAIN_PACK + 1] = d->sig ;
11 }
12