mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-03 16:48:45 +00:00
eb990c07c8
+ No functional change here, just renames and #include changes. + CMake can't have slashes in the target names. I'm suspciious of that weird machinery for test, but I made it work. + A couple of builtins did not include their own headers, that is no longer the case.
14 lines
317 B
C++
14 lines
317 B
C++
// Prototypes for functions for executing builtin_jobs functions.
|
|
#ifndef FISH_BUILTIN_JOBS_H
|
|
#define FISH_BUILTIN_JOBS_H
|
|
|
|
#include <cstring>
|
|
#include <cwchar>
|
|
|
|
#include "../io.h"
|
|
#include "../maybe.h"
|
|
|
|
class parser_t;
|
|
|
|
maybe_t<int> builtin_jobs(parser_t &parser, io_streams_t &streams, const wchar_t **argv);
|
|
#endif
|