mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-01 17:56:15 +08:00
path.cpp: include its actual header with the prototype
path.h: fix that header so it can compile.
This commit is contained in:
parent
e63af7d006
commit
3e0f3c9f45
|
@ -1,6 +1,8 @@
|
|||
// Implementation of the path builtin.
|
||||
#include "config.h" // IWYU pragma: keep
|
||||
|
||||
#include "path.h"
|
||||
|
||||
#include <sys/stat.h>
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
|
|
|
@ -4,6 +4,9 @@
|
|||
#include <cstring>
|
||||
#include <cwchar>
|
||||
|
||||
#include "../maybe.h"
|
||||
#include "../io.h"
|
||||
|
||||
class parser_t;
|
||||
|
||||
maybe_t<int> builtin_path(parser_t &parser, io_streams_t &streams, const wchar_t **argv);
|
||||
|
|
Loading…
Reference in New Issue
Block a user