mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-19 08:24:00 +00:00
db72a05e89
clangd was unable to resolve some symbols
13 lines
300 B
C++
13 lines
300 B
C++
// Prototypes for functions for executing builtin_ulimit functions.
|
|
#ifndef FISH_BUILTIN_ULIMIT_H
|
|
#define FISH_BUILTIN_ULIMIT_H
|
|
|
|
#include <cstring>
|
|
#include <cwchar>
|
|
|
|
#include "io.h"
|
|
|
|
class parser_t;
|
|
|
|
maybe_t<int> builtin_ulimit(parser_t &parser, io_streams_t &streams, const wchar_t **argv);
|
|
#endif
|