1 #include <nchan_module.h>
2 
nchan_exit_notice_about_remaining_things(char * thing,char * where,ngx_int_t num)3 void nchan_exit_notice_about_remaining_things(char *thing, char *where, ngx_int_t num) {
4   if(num > 0) {
5     nchan_log_notice("%i %s%s remain%s %sat exit", num, thing, num == 1 ? "" : "s", num == 1 ? "s" : "", where == NULL ? "" : where);
6   }
7 }
8