1#ifndef DEFINE_FUNC_ATTRIBUTES
2# define DEFINE_FUNC_ATTRIBUTES
3#endif
4#include "nvim/func_attr.h"
5#undef DEFINE_FUNC_ATTRIBUTES
6int process_spawn(Process *proc, _Bool in, _Bool out, _Bool err) FUNC_ATTR_NONNULL_ALL;
7void process_teardown(Loop *loop) FUNC_ATTR_NONNULL_ALL;
8void process_close_streams(Process *proc) FUNC_ATTR_NONNULL_ALL;
9int process_wait(Process *proc, int ms, MultiQueue *events) FUNC_ATTR_NONNULL_ARG(1);
10void process_stop(Process *proc) FUNC_ATTR_NONNULL_ALL;
11#include "nvim/func_attr.h"
12