mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-30 22:58:46 +00:00
732f7284d4
This eliminates the C++ version.
13 lines
245 B
C++
13 lines
245 B
C++
// Support for exposing the terminal size.
|
|
|
|
#include "config.h" // IWYU pragma: keep
|
|
#ifndef FISH_TERMSIZE_H
|
|
#define FISH_TERMSIZE_H
|
|
|
|
#if INCLUDE_RUST_HEADERS
|
|
#include "termsize.rs.h"
|
|
#else
|
|
struct termsize_t;
|
|
#endif
|
|
|
|
#endif // FISH_TERMSIZE_H
|