Files
KirkOS/ext2_root/usr/include/bits/winsize.h
T
kaguya 9a9b91c940 user: implement mlibc as the libc, finally.
It's finally done..

Signed-off-by: kaguya <vpshinomiya@protonmail.com>
2026-05-02 03:31:49 -04:00

14 lines
203 B
C

#ifndef MLIBC_WINSIZE_H
#define MLIBC_WINSIZE_H
struct winsize {
unsigned short ws_row;
unsigned short ws_col;
unsigned short ws_xpixel;
unsigned short ws_ypixel;
};
#endif /* MLIBC_WINSIZE_H */