mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 08:07:34 +00:00
LibC: Add ws_xpixel and ws_ypixel members to struct winsize
This matches what other systems have, although we don't use them. Gets rid of one dropbear patch. :^)
This commit is contained in:
parent
53d4c7e207
commit
3ee1b3cbd4
2 changed files with 2 additions and 30 deletions
|
@ -33,6 +33,8 @@ __BEGIN_DECLS
|
|||
struct winsize {
|
||||
unsigned short ws_row;
|
||||
unsigned short ws_col;
|
||||
unsigned short ws_xpixel;
|
||||
unsigned short ws_ypixel;
|
||||
};
|
||||
|
||||
struct FBResolution {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue