Clean up newlines.

This commit is contained in:
Andy Nguyen
2026-05-12 23:20:34 +02:00
parent d66ed49866
commit 238f89d954
10 changed files with 0 additions and 23 deletions

View File

@@ -5,7 +5,6 @@
#include <stdint.h>
__attribute__((section(".entry_point"), naked)) uint32_t main(void) {
// We enter this function after CR3 was updated to 1:1 mapping
// We need to point RSP/RBP to a good known valid address
uint32_t ebax, ebx, ecx, edx;

View File

@@ -26,7 +26,6 @@ uint8_t hex_val[17];
__attribute__((noinline, optimize("O0"))) uint8_t *
u64_to_hex_custom(uint64_t val, uint8_t *dest) {
const uint8_t hex_chars[] = "0123456789abcdef";
dest[16] = '\0';