diff options
author | sigsegv7 <ian@vegaa.systems> | 2023-09-12 02:33:31 -0400 |
---|---|---|
committer | sigsegv7 <ian@vegaa.systems> | 2023-09-12 02:33:31 -0400 |
commit | 71ab2bb3ed3aa8f12229e1c55fcc1f885a82f7e2 (patch) | |
tree | b3008c8db617b9799d493703dd814d8b5cfb524c /sys | |
parent | 153baecaf150112fc06690cb5faad880e8bf5083 (diff) |
project-wide: migrate to git
Diffstat (limited to 'sys')
50 files changed, 0 insertions, 99 deletions
diff --git a/sys/arch/amd64/gdt.c b/sys/arch/amd64/gdt.c index cb32837..b1f3220 100644 --- a/sys/arch/amd64/gdt.c +++ b/sys/arch/amd64/gdt.c @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #include <machine/gdt.h> struct gdt_entry g_gdt[256] = { diff --git a/sys/arch/amd64/idt.c b/sys/arch/amd64/idt.c index 46eb1f8..05ec7cb 100644 --- a/sys/arch/amd64/idt.c +++ b/sys/arch/amd64/idt.c @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #include <machine/idt.h> static struct idt_entry idt[256]; diff --git a/sys/arch/amd64/machdep.c b/sys/arch/amd64/machdep.c index 902dd5e..97f17a7 100644 --- a/sys/arch/amd64/machdep.c +++ b/sys/arch/amd64/machdep.c @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #include <sys/machdep.h> #include <sys/cdefs.h> #include <machine/trap.h> diff --git a/sys/arch/amd64/trap.S b/sys/arch/amd64/trap.S index 31792c5..d10c0b3 100644 --- a/sys/arch/amd64/trap.S +++ b/sys/arch/amd64/trap.S @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #include <machine/frame.h> #include <machine/trap.h> diff --git a/sys/arch/amd64/trap.c b/sys/arch/amd64/trap.c index 93ae17c..af61d0f 100644 --- a/sys/arch/amd64/trap.c +++ b/sys/arch/amd64/trap.c @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #include <machine/trap.h> #include <sys/cdefs.h> #include <sys/spinlock.h> diff --git a/sys/dev/video/fbdev.c b/sys/dev/video/fbdev.c index 3ef3d8f..a22319b 100644 --- a/sys/dev/video/fbdev.c +++ b/sys/dev/video/fbdev.c @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #include <sys/types.h> #include <sys/limine.h> #include <dev/video/fbdev.h> diff --git a/sys/firmware/acpi/acpi_init.c b/sys/firmware/acpi/acpi_init.c index 8ea872f..a9c13ec 100644 --- a/sys/firmware/acpi/acpi_init.c +++ b/sys/firmware/acpi/acpi_init.c @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #include <firmware/acpi/acpi.h> #include <sys/limine.h> #include <sys/syslog.h> diff --git a/sys/firmware/acpi/acpi_subr.c b/sys/firmware/acpi/acpi_subr.c index 7212602..1495a6d 100644 --- a/sys/firmware/acpi/acpi_subr.c +++ b/sys/firmware/acpi/acpi_subr.c @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #include <firmware/acpi/acpi.h> #include <firmware/acpi/tables.h> #include <vm/vm.h> diff --git a/sys/include/arch/amd64/frame.h b/sys/include/arch/amd64/frame.h index 6239eff..8f7f8ca 100644 --- a/sys/include/arch/amd64/frame.h +++ b/sys/include/arch/amd64/frame.h @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #ifndef _AMD64_FRAME_H_ #define _AMD64_FRAME_H_ diff --git a/sys/include/arch/amd64/gdt.h b/sys/include/arch/amd64/gdt.h index 2b7f308..e83a94d 100644 --- a/sys/include/arch/amd64/gdt.h +++ b/sys/include/arch/amd64/gdt.h @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #ifndef AMD64_GDT_H_ #define AMD64_GDT_H_ diff --git a/sys/include/arch/amd64/idt.h b/sys/include/arch/amd64/idt.h index d3b623d..774947a 100644 --- a/sys/include/arch/amd64/idt.h +++ b/sys/include/arch/amd64/idt.h @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #ifndef _AMD64_IDT_H_ #define _AMD64_IDT_H_ diff --git a/sys/include/arch/amd64/trap.h b/sys/include/arch/amd64/trap.h index e72ae11..a9841bd 100644 --- a/sys/include/arch/amd64/trap.h +++ b/sys/include/arch/amd64/trap.h @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #ifndef _AMD64_TRAP_H_ #define _AMD64_TRAP_H_ diff --git a/sys/include/dev/video/fbdev.h b/sys/include/dev/video/fbdev.h index 23cc10a..f4abd34 100644 --- a/sys/include/dev/video/fbdev.h +++ b/sys/include/dev/video/fbdev.h @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #ifndef _FBDEV_H_ #define _FBDEV_H_ diff --git a/sys/include/firmware/acpi/acpi.h b/sys/include/firmware/acpi/acpi.h index 193fc56..d0866d5 100644 --- a/sys/include/firmware/acpi/acpi.h +++ b/sys/include/firmware/acpi/acpi.h @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #ifndef _ACPI_ACPI_H_ #define _ACPI_ACPI_H_ diff --git a/sys/include/firmware/acpi/tables.h b/sys/include/firmware/acpi/tables.h index 624ba0c..c145e90 100644 --- a/sys/include/firmware/acpi/tables.h +++ b/sys/include/firmware/acpi/tables.h @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #ifndef _ACPI_TABLES_H_ #define _ACPI_TABLES_H_ diff --git a/sys/include/lib/bitmap.h b/sys/include/lib/bitmap.h index 98c677e..34c3a96 100644 --- a/sys/include/lib/bitmap.h +++ b/sys/include/lib/bitmap.h @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #ifndef _LIB_BITMAP_H_ #define _LIB_BITMAP_H_ diff --git a/sys/include/lib/logo.h b/sys/include/lib/logo.h index 77e90aa..dc91278 100644 --- a/sys/include/lib/logo.h +++ b/sys/include/lib/logo.h @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #include <sys/types.h> #include <sys/syslog.h> diff --git a/sys/include/lib/stdarg.h b/sys/include/lib/stdarg.h index 6676de8..f36055b 100644 --- a/sys/include/lib/stdarg.h +++ b/sys/include/lib/stdarg.h @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #ifndef _LIB_STDARG_H_ #define _LIB_STDARG_H_ diff --git a/sys/include/lib/string.h b/sys/include/lib/string.h index 7134f18..8668b01 100644 --- a/sys/include/lib/string.h +++ b/sys/include/lib/string.h @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #ifndef _LIB_STRING_H_ #define _LIB_STRING_H_ diff --git a/sys/include/lib/tty_font.h b/sys/include/lib/tty_font.h index 7dacf4c..f3090e2 100644 --- a/sys/include/lib/tty_font.h +++ b/sys/include/lib/tty_font.h @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #ifndef _LIB_TTY_FONT_H_ #define _LIB_TTY_FONT_H_ diff --git a/sys/include/sys/ascii.h b/sys/include/sys/ascii.h index dc4cd86..167d5bb 100644 --- a/sys/include/sys/ascii.h +++ b/sys/include/sys/ascii.h @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #ifndef _SYS_ASCII_H_ #define _SYS_ASCII_H_ diff --git a/sys/include/sys/cdefs.h b/sys/include/sys/cdefs.h index 78303ba..9518dcb 100644 --- a/sys/include/sys/cdefs.h +++ b/sys/include/sys/cdefs.h @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #ifndef _SYS_CDEFS_H_ #define _SYS_CDEFS_H_ diff --git a/sys/include/sys/errno.h b/sys/include/sys/errno.h index a6ec5af..cadbb2f 100644 --- a/sys/include/sys/errno.h +++ b/sys/include/sys/errno.h @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #ifndef _SYS_ERRNO_H_ #define _SYS_ERRNO_H_ diff --git a/sys/include/sys/limine.h b/sys/include/sys/limine.h index 298de81..f26d8c5 100644 --- a/sys/include/sys/limine.h +++ b/sys/include/sys/limine.h @@ -17,8 +17,6 @@ #ifndef _LIMINE_H #define _LIMINE_H 1 -/* $Id$ */ - #ifdef __cplusplus extern "C" { #endif diff --git a/sys/include/sys/machdep.h b/sys/include/sys/machdep.h index bd914bb..cfed2ad 100644 --- a/sys/include/sys/machdep.h +++ b/sys/include/sys/machdep.h @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #ifndef _SYS_MACHDEP_H_ #define _SYS_MACHDEP_H_ diff --git a/sys/include/sys/mmio.h b/sys/include/sys/mmio.h index f84ab11..6c21632 100644 --- a/sys/include/sys/mmio.h +++ b/sys/include/sys/mmio.h @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #ifndef _SYS_MMIO_H_ #define _SYS_MMIO_H_ diff --git a/sys/include/sys/panic.h b/sys/include/sys/panic.h index 8529441..985565b 100644 --- a/sys/include/sys/panic.h +++ b/sys/include/sys/panic.h @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #ifndef _SYS_PANIC_H_ #define _SYS_PANIC_H_ diff --git a/sys/include/sys/queue.h b/sys/include/sys/queue.h index acd0703..f6ec170 100644 --- a/sys/include/sys/queue.h +++ b/sys/include/sys/queue.h @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #define _Q_INVALIDATE(a) /* diff --git a/sys/include/sys/spinlock.h b/sys/include/sys/spinlock.h index 8153041..6b1428f 100644 --- a/sys/include/sys/spinlock.h +++ b/sys/include/sys/spinlock.h @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #ifndef _SYS_SPINLOCK_H_ #define _SYS_SPINLOCK_H_ diff --git a/sys/include/sys/syslog.h b/sys/include/sys/syslog.h index bb6c512..97e024c 100644 --- a/sys/include/sys/syslog.h +++ b/sys/include/sys/syslog.h @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #ifndef _SYS_SYSLOG_H_ #define _SYS_SYSLOG_H_ diff --git a/sys/include/sys/termios.h b/sys/include/sys/termios.h index 4cbef9d..fd4fa50 100644 --- a/sys/include/sys/termios.h +++ b/sys/include/sys/termios.h @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #ifndef _SYS_TERMIOS_H_ #define _SYS_TERMIOS_H_ diff --git a/sys/include/sys/tty.h b/sys/include/sys/tty.h index 0edbaab..e75360a 100644 --- a/sys/include/sys/tty.h +++ b/sys/include/sys/tty.h @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #ifndef _SYS_TTY_H_ #define _SYS_TTY_H_ diff --git a/sys/include/sys/types.h b/sys/include/sys/types.h index 8fc285a..2310041 100644 --- a/sys/include/sys/types.h +++ b/sys/include/sys/types.h @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #ifndef _SYS_TYPES_H_ #define _SYS_TYPES_H_ diff --git a/sys/include/vm/vm.h b/sys/include/vm/vm.h index e118beb..a1f1e23 100644 --- a/sys/include/vm/vm.h +++ b/sys/include/vm/vm.h @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #ifndef _SYS_VM_VM_H_ #define _SYS_VM_VM_H_ diff --git a/sys/include/vm/vm_physseg.h b/sys/include/vm/vm_physseg.h index ed815ec..5bf21db 100644 --- a/sys/include/vm/vm_physseg.h +++ b/sys/include/vm/vm_physseg.h @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #ifndef _VM_VM_PHYSSEG_H_ #define _VM_VM_PHYSSEG_H_ diff --git a/sys/kern/init_main.c b/sys/kern/init_main.c index 0e8d4b5..7b4bad1 100644 --- a/sys/kern/init_main.c +++ b/sys/kern/init_main.c @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #include <sys/cdefs.h> #include <sys/tty.h> #include <sys/syslog.h> diff --git a/sys/kern/kern_panic.c b/sys/kern/kern_panic.c index 69680f7..3d97abb 100644 --- a/sys/kern/kern_panic.c +++ b/sys/kern/kern_panic.c @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #include <sys/panic.h> #include <sys/syslog.h> #include <sys/machdep.h> diff --git a/sys/kern/kern_syslog.c b/sys/kern/kern_syslog.c index cd7f8f0..f35e778 100644 --- a/sys/kern/kern_syslog.c +++ b/sys/kern/kern_syslog.c @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #include <sys/syslog.h> #include <sys/tty.h> #include <string.h> diff --git a/sys/kern/tty.c b/sys/kern/tty.c index f166302..1519ff3 100644 --- a/sys/kern/tty.c +++ b/sys/kern/tty.c @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #include <sys/tty.h> #include <sys/cdefs.h> #include <sys/errno.h> diff --git a/sys/kern/tty_subr.c b/sys/kern/tty_subr.c index 4c8405e..59540e3 100644 --- a/sys/kern/tty_subr.c +++ b/sys/kern/tty_subr.c @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #include <sys/tty.h> /* diff --git a/sys/lib/logo.c b/sys/lib/logo.c index bd72d4e..2b077d5 100644 --- a/sys/lib/logo.c +++ b/sys/lib/logo.c @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #include <lib/logo.h> /* diff --git a/sys/lib/string/itoa.c b/sys/lib/string/itoa.c index 5a80295..ea7c042 100644 --- a/sys/lib/string/itoa.c +++ b/sys/lib/string/itoa.c @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #include <string.h> static char *itoa_base10_convert(int64_t value, char *buf); diff --git a/sys/lib/string/memcmp.c b/sys/lib/string/memcmp.c index 6d8afcd..f3f88bb 100644 --- a/sys/lib/string/memcmp.c +++ b/sys/lib/string/memcmp.c @@ -26,7 +26,6 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ - /* $Id */ #include <string.h> diff --git a/sys/lib/string/memcpy.c b/sys/lib/string/memcpy.c index a71efc7..b48c30b 100644 --- a/sys/lib/string/memcpy.c +++ b/sys/lib/string/memcpy.c @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #include <string.h> void * diff --git a/sys/lib/string/memmove.c b/sys/lib/string/memmove.c index 55991ed..e67226b 100644 --- a/sys/lib/string/memmove.c +++ b/sys/lib/string/memmove.c @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #include <string.h> void * diff --git a/sys/lib/string/memset.c b/sys/lib/string/memset.c index 98de192..f8f3c9c 100644 --- a/sys/lib/string/memset.c +++ b/sys/lib/string/memset.c @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #include <string.h> void * diff --git a/sys/lib/string/strlen.c b/sys/lib/string/strlen.c index e27c7be..aa741bd 100644 --- a/sys/lib/string/strlen.c +++ b/sys/lib/string/strlen.c @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #include <string.h> size_t diff --git a/sys/lib/tty_font.c b/sys/lib/tty_font.c index 5d2f516..8942856 100644 --- a/sys/lib/tty_font.c +++ b/sys/lib/tty_font.c @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #include <lib/tty_font.h> diff --git a/sys/vm/vm.c b/sys/vm/vm.c index 1483909..ab6103f 100644 --- a/sys/vm/vm.c +++ b/sys/vm/vm.c @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #include <vm/vm.h> volatile struct limine_hhdm_request g_hhdm_request = { diff --git a/sys/vm/vm_physseg.c b/sys/vm/vm_physseg.c index 5a80723..f21c282 100644 --- a/sys/vm/vm_physseg.c +++ b/sys/vm/vm_physseg.c @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #include <sys/limine.h> #include <sys/cdefs.h> #include <sys/syslog.h> |