Run clang-format on most sources

This commit is contained in:
Justine Tunney 2023-04-26 20:45:01 -07:00
parent 614229e3f4
commit 369f9740de
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
228 changed files with 4844 additions and 4637 deletions

View file

@ -25,9 +25,9 @@
OTHER DEALINGS IN THE SOFTWARE.
*/
#include "libc/dce.h"
#include "libc/vga/vga.internal.h"
#include "libc/runtime/pc.internal.h"
#include "libc/str/str.h"
#include "libc/vga/vga.internal.h"
struct Tty _vga_tty;
@ -58,8 +58,8 @@ void _vga_reinit(struct Tty *tty, unsigned short starty, unsigned short startx,
* Initialize our tty structure from the current screen geometry, screen
* contents, cursor position, & character dimensions.
*/
_StartTty(tty, vid_type, height, width, stride, starty, startx,
chr_ht, chr_wid, vid_buf, init_flags);
_StartTty(tty, vid_type, height, width, stride, starty, startx, chr_ht,
chr_wid, vid_buf, init_flags);
}
textstartup void _vga_init(void) {