summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/amd64/gdt.c2
-rw-r--r--sys/arch/amd64/idt.c2
-rw-r--r--sys/arch/amd64/machdep.c2
-rw-r--r--sys/arch/amd64/trap.S2
-rw-r--r--sys/arch/amd64/trap.c2
-rw-r--r--sys/dev/video/fbdev.c2
-rw-r--r--sys/firmware/acpi/acpi_init.c4
-rw-r--r--sys/firmware/acpi/acpi_subr.c2
-rw-r--r--sys/include/arch/amd64/frame.h2
-rw-r--r--sys/include/arch/amd64/gdt.h2
-rw-r--r--sys/include/arch/amd64/idt.h2
-rw-r--r--sys/include/arch/amd64/trap.h2
-rw-r--r--sys/include/dev/video/fbdev.h2
-rw-r--r--sys/include/firmware/acpi/acpi.h2
-rw-r--r--sys/include/firmware/acpi/tables.h2
-rw-r--r--sys/include/lib/bitmap.h2
-rw-r--r--sys/include/lib/logo.h4
-rw-r--r--sys/include/lib/stdarg.h2
-rw-r--r--sys/include/lib/string.h2
-rw-r--r--sys/include/lib/tty_font.h2
-rw-r--r--sys/include/sys/ascii.h2
-rw-r--r--sys/include/sys/cdefs.h2
-rw-r--r--sys/include/sys/errno.h2
-rw-r--r--sys/include/sys/machdep.h2
-rw-r--r--sys/include/sys/mmio.h2
-rw-r--r--sys/include/sys/panic.h2
-rw-r--r--sys/include/sys/queue.h2
-rw-r--r--sys/include/sys/spinlock.h2
-rw-r--r--sys/include/sys/syslog.h2
-rw-r--r--sys/include/sys/termios.h2
-rw-r--r--sys/include/sys/tty.h2
-rw-r--r--sys/include/sys/types.h2
-rw-r--r--sys/include/vm/vm.h2
-rw-r--r--sys/include/vm/vm_physseg.h2
-rw-r--r--sys/kern/init_main.c4
-rw-r--r--sys/kern/kern_panic.c2
-rw-r--r--sys/kern/kern_syslog.c2
-rw-r--r--sys/kern/tty.c4
-rw-r--r--sys/kern/tty_subr.c2
-rw-r--r--sys/lib/logo.c2
-rw-r--r--sys/lib/string/itoa.c2
-rw-r--r--sys/lib/string/memcmp.c2
-rw-r--r--sys/lib/string/memcpy.c2
-rw-r--r--sys/lib/string/memmove.c2
-rw-r--r--sys/lib/string/memset.c2
-rw-r--r--sys/lib/string/strlen.c2
-rw-r--r--sys/lib/tty_font.c2
-rw-r--r--sys/vm/vm.c2
-rw-r--r--sys/vm/vm_physseg.c4
49 files changed, 54 insertions, 54 deletions
diff --git a/sys/arch/amd64/gdt.c b/sys/arch/amd64/gdt.c
index 3171f53..cb32837 100644
--- a/sys/arch/amd64/gdt.c
+++ b/sys/arch/amd64/gdt.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/arch/amd64/idt.c b/sys/arch/amd64/idt.c
index 835803d..46eb1f8 100644
--- a/sys/arch/amd64/idt.c
+++ b/sys/arch/amd64/idt.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/arch/amd64/machdep.c b/sys/arch/amd64/machdep.c
index 8b1b27e..902dd5e 100644
--- a/sys/arch/amd64/machdep.c
+++ b/sys/arch/amd64/machdep.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/arch/amd64/trap.S b/sys/arch/amd64/trap.S
index 78db3cd..31792c5 100644
--- a/sys/arch/amd64/trap.S
+++ b/sys/arch/amd64/trap.S
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/arch/amd64/trap.c b/sys/arch/amd64/trap.c
index d45be72..93ae17c 100644
--- a/sys/arch/amd64/trap.c
+++ b/sys/arch/amd64/trap.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/dev/video/fbdev.c b/sys/dev/video/fbdev.c
index 3bff274..3ef3d8f 100644
--- a/sys/dev/video/fbdev.c
+++ b/sys/dev/video/fbdev.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/firmware/acpi/acpi_init.c b/sys/firmware/acpi/acpi_init.c
index 8240d42..8ea872f 100644
--- a/sys/firmware/acpi/acpi_init.c
+++ b/sys/firmware/acpi/acpi_init.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -38,7 +38,7 @@
#include <vm/vm.h>
__MODULE_NAME("acpi");
-__KERNEL_META("$Vega$: acpi_init.c, Emilia Strange, "
+__KERNEL_META("$Vega$: acpi_init.c, Ian Marco Moffett, "
"ACPI init logic");
static volatile struct limine_rsdp_request rsdp_req = {
diff --git a/sys/firmware/acpi/acpi_subr.c b/sys/firmware/acpi/acpi_subr.c
index 6f8ca08..7212602 100644
--- a/sys/firmware/acpi/acpi_subr.c
+++ b/sys/firmware/acpi/acpi_subr.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/include/arch/amd64/frame.h b/sys/include/arch/amd64/frame.h
index 9a645e0..6239eff 100644
--- a/sys/include/arch/amd64/frame.h
+++ b/sys/include/arch/amd64/frame.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/include/arch/amd64/gdt.h b/sys/include/arch/amd64/gdt.h
index 9c4ff1f..2b7f308 100644
--- a/sys/include/arch/amd64/gdt.h
+++ b/sys/include/arch/amd64/gdt.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/include/arch/amd64/idt.h b/sys/include/arch/amd64/idt.h
index ddafc20..d3b623d 100644
--- a/sys/include/arch/amd64/idt.h
+++ b/sys/include/arch/amd64/idt.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/include/arch/amd64/trap.h b/sys/include/arch/amd64/trap.h
index 2c2f1d0..e72ae11 100644
--- a/sys/include/arch/amd64/trap.h
+++ b/sys/include/arch/amd64/trap.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/include/dev/video/fbdev.h b/sys/include/dev/video/fbdev.h
index 4e5b279..23cc10a 100644
--- a/sys/include/dev/video/fbdev.h
+++ b/sys/include/dev/video/fbdev.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/include/firmware/acpi/acpi.h b/sys/include/firmware/acpi/acpi.h
index adf78b2..193fc56 100644
--- a/sys/include/firmware/acpi/acpi.h
+++ b/sys/include/firmware/acpi/acpi.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/include/firmware/acpi/tables.h b/sys/include/firmware/acpi/tables.h
index 1d6fa5c..624ba0c 100644
--- a/sys/include/firmware/acpi/tables.h
+++ b/sys/include/firmware/acpi/tables.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/include/lib/bitmap.h b/sys/include/lib/bitmap.h
index 1061be6..98c677e 100644
--- a/sys/include/lib/bitmap.h
+++ b/sys/include/lib/bitmap.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/include/lib/logo.h b/sys/include/lib/logo.h
index 3194de3..77e90aa 100644
--- a/sys/include/lib/logo.h
+++ b/sys/include/lib/logo.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -32,7 +32,7 @@
#include <sys/types.h>
#include <sys/syslog.h>
-#define COPYRIGHT "Copyright (c) 2023 Emilia Strange and the VegaOS team."
+#define COPYRIGHT "Copyright (c) 2023 Ian Marco Moffett and the VegaOS team."
#define PRINT_LOGO() \
kprintf("%s v%s\n\n", g_logo, VEGA_VERSION); \
diff --git a/sys/include/lib/stdarg.h b/sys/include/lib/stdarg.h
index d2cfb85..6676de8 100644
--- a/sys/include/lib/stdarg.h
+++ b/sys/include/lib/stdarg.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/include/lib/string.h b/sys/include/lib/string.h
index b6d9686..7134f18 100644
--- a/sys/include/lib/string.h
+++ b/sys/include/lib/string.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/include/lib/tty_font.h b/sys/include/lib/tty_font.h
index 090f831..7dacf4c 100644
--- a/sys/include/lib/tty_font.h
+++ b/sys/include/lib/tty_font.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/include/sys/ascii.h b/sys/include/sys/ascii.h
index b34d112..dc4cd86 100644
--- a/sys/include/sys/ascii.h
+++ b/sys/include/sys/ascii.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/include/sys/cdefs.h b/sys/include/sys/cdefs.h
index d1879b6..78303ba 100644
--- a/sys/include/sys/cdefs.h
+++ b/sys/include/sys/cdefs.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/include/sys/errno.h b/sys/include/sys/errno.h
index b1cc24b..a6ec5af 100644
--- a/sys/include/sys/errno.h
+++ b/sys/include/sys/errno.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/include/sys/machdep.h b/sys/include/sys/machdep.h
index 26e8050..bd914bb 100644
--- a/sys/include/sys/machdep.h
+++ b/sys/include/sys/machdep.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/include/sys/mmio.h b/sys/include/sys/mmio.h
index 334b31c..f84ab11 100644
--- a/sys/include/sys/mmio.h
+++ b/sys/include/sys/mmio.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/include/sys/panic.h b/sys/include/sys/panic.h
index 50444a9..8529441 100644
--- a/sys/include/sys/panic.h
+++ b/sys/include/sys/panic.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/include/sys/queue.h b/sys/include/sys/queue.h
index 6a940b1..acd0703 100644
--- a/sys/include/sys/queue.h
+++ b/sys/include/sys/queue.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/include/sys/spinlock.h b/sys/include/sys/spinlock.h
index 35f7c27..8153041 100644
--- a/sys/include/sys/spinlock.h
+++ b/sys/include/sys/spinlock.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/include/sys/syslog.h b/sys/include/sys/syslog.h
index 1057b95..bb6c512 100644
--- a/sys/include/sys/syslog.h
+++ b/sys/include/sys/syslog.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/include/sys/termios.h b/sys/include/sys/termios.h
index 0deb174..4cbef9d 100644
--- a/sys/include/sys/termios.h
+++ b/sys/include/sys/termios.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/include/sys/tty.h b/sys/include/sys/tty.h
index 302330e..0edbaab 100644
--- a/sys/include/sys/tty.h
+++ b/sys/include/sys/tty.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/include/sys/types.h b/sys/include/sys/types.h
index c7a24b7..8fc285a 100644
--- a/sys/include/sys/types.h
+++ b/sys/include/sys/types.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/include/vm/vm.h b/sys/include/vm/vm.h
index 1dcda8b..e118beb 100644
--- a/sys/include/vm/vm.h
+++ b/sys/include/vm/vm.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/include/vm/vm_physseg.h b/sys/include/vm/vm_physseg.h
index 1cdb6d8..ed815ec 100644
--- a/sys/include/vm/vm_physseg.h
+++ b/sys/include/vm/vm_physseg.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/kern/init_main.c b/sys/kern/init_main.c
index 5cde0e0..0e8d4b5 100644
--- a/sys/kern/init_main.c
+++ b/sys/kern/init_main.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -37,7 +37,7 @@
#include <vm/vm_physseg.h>
#include <logo.h>
-__KERNEL_META("$Vega$: init_main.c, Emilia Strange, "
+__KERNEL_META("$Vega$: init_main.c, Ian Marco Moffett, "
"Where the Vega kernel first starts up");
void
diff --git a/sys/kern/kern_panic.c b/sys/kern/kern_panic.c
index d3dea7e..69680f7 100644
--- a/sys/kern/kern_panic.c
+++ b/sys/kern/kern_panic.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/kern/kern_syslog.c b/sys/kern/kern_syslog.c
index f5b9c5a..cd7f8f0 100644
--- a/sys/kern/kern_syslog.c
+++ b/sys/kern/kern_syslog.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/kern/tty.c b/sys/kern/tty.c
index b385f15..f166302 100644
--- a/sys/kern/tty.c
+++ b/sys/kern/tty.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -48,7 +48,7 @@
#define CURSOR_WIDTH FONT_WIDTH
#define CURSOR_HEIGHT FONT_HEIGHT
-__KERNEL_META("$Vega$: tty.c, Emilia Strange, "
+__KERNEL_META("$Vega$: tty.c, Ian Marco Moffett, "
"Core TTY implementation");
/* List of attached TTYs */
diff --git a/sys/kern/tty_subr.c b/sys/kern/tty_subr.c
index cc8a1a6..4c8405e 100644
--- a/sys/kern/tty_subr.c
+++ b/sys/kern/tty_subr.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/lib/logo.c b/sys/lib/logo.c
index 2e4d42d..bd72d4e 100644
--- a/sys/lib/logo.c
+++ b/sys/lib/logo.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/lib/string/itoa.c b/sys/lib/string/itoa.c
index e632362..5a80295 100644
--- a/sys/lib/string/itoa.c
+++ b/sys/lib/string/itoa.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/lib/string/memcmp.c b/sys/lib/string/memcmp.c
index 6c8328b..6d8afcd 100644
--- a/sys/lib/string/memcmp.c
+++ b/sys/lib/string/memcmp.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/lib/string/memcpy.c b/sys/lib/string/memcpy.c
index 50c60ea..a71efc7 100644
--- a/sys/lib/string/memcpy.c
+++ b/sys/lib/string/memcpy.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/lib/string/memmove.c b/sys/lib/string/memmove.c
index f04d4aa..55991ed 100644
--- a/sys/lib/string/memmove.c
+++ b/sys/lib/string/memmove.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/lib/string/memset.c b/sys/lib/string/memset.c
index a851c67..98de192 100644
--- a/sys/lib/string/memset.c
+++ b/sys/lib/string/memset.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/lib/string/strlen.c b/sys/lib/string/strlen.c
index 93b6fa9..e27c7be 100644
--- a/sys/lib/string/strlen.c
+++ b/sys/lib/string/strlen.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/lib/tty_font.c b/sys/lib/tty_font.c
index a9b95ab..5d2f516 100644
--- a/sys/lib/tty_font.c
+++ b/sys/lib/tty_font.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/vm/vm.c b/sys/vm/vm.c
index 7a97328..1483909 100644
--- a/sys/vm/vm.c
+++ b/sys/vm/vm.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/sys/vm/vm_physseg.c b/sys/vm/vm_physseg.c
index 2a63b59..5a80723 100644
--- a/sys/vm/vm_physseg.c
+++ b/sys/vm/vm_physseg.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023 Emilia Strange and the VegaOS team.
+ * Copyright (c) 2023 Ian Marco Moffett and the VegaOS team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -38,7 +38,7 @@
#include <string.h>
__MODULE_NAME("vm_physseg");
-__KERNEL_META("$Vega$: vm_physseg.c, Emilia Strange, "
+__KERNEL_META("$Vega$: vm_physseg.c, Ian Marco Moffett, "
"The Vega physical memory manager");
#if defined(VM_PHYSSEG_DEBUG)