1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 15:37:46 +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:
Andreas Kling 2020-06-08 21:40:22 +02:00
parent 53d4c7e207
commit 3ee1b3cbd4
2 changed files with 2 additions and 30 deletions

View file

@ -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 {