1 #pragma once
2 #include <stdbool.h>
3 
4 #include <sys/types.h>
5 
6 #include "user-notification.h"
7 
8 pid_t slave_spawn(
9     int ptmx, int argc, const char *cwd, char *const *argv, const char *term_env,
10     const char *conf_shell, bool login_shell,
11     const user_notifications_t *notifications);
12