fish-shell/src/builtin_wait.h
ridiculousfish 82eca4bc86 Run clang-format on all files
The main change here is to reorder headers.
2019-10-13 15:50:48 -07:00

9 lines
228 B
C++

// Prototypes for executing builtin_wait function.
#ifndef FISH_BUILTIN_WAIT_H
#define FISH_BUILTIN_WAIT_H
class parser_t;
struct io_streams_t;
int builtin_wait(parser_t &parser, io_streams_t &streams, wchar_t **argv);
#endif