Skip to content

Commit 5a0a3b8

Browse files
andressbarajasQuzarDC
authored andcommitted
Fix stale file paths in banners and header guards
After moving the gdb folder one directory higher I forgot to update the header paths. Also did a check across the whole code base for the same header path issue. Also came across an incorrect comment on header guards so I did a check across the whole code base and fixed those too.
1 parent 977ada0 commit 5a0a3b8

19 files changed

Lines changed: 19 additions & 19 deletions

File tree

include/kos/dbgio.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* KallistiOS ##version##
22
3-
kos/include/dbgio.h
3+
include/kos/dbgio.h
44
Copyright (C) 2000, 2004 Megan Potter
55
Copyright (C) 2026 Eric Fradella
66

include/kos/init_base.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,4 @@ __BEGIN_DECLS
6565

6666
__END_DECLS
6767

68-
#endif /* !__ARCH_INIT_BASE_H */
68+
#endif /* !__KOS_INIT_BASE_H */

include/kos/regfield.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* KallistiOS ##version##
22
3-
kos/compiler.h
3+
kos/regfield.h
44
Copyright (C) 2024 Paul Cercueil
55
66
Macros to extract / insert bit fields

include/poll.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,4 +99,4 @@ int poll(struct pollfd fds[], nfds_t nfds, int timeout);
9999

100100
__END_DECLS
101101

102-
#endif /* !POLL_H */
102+
#endif /* !__POLL_H */

include/sys/lock.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* KallistiOS ##version##
22
3-
lock_common.h
3+
sys/lock.h
44
Copyright (C) 2004 Megan Potter
55
66
This file is patched into the kos-chain newlib's <sys/lock.h>, by newlib.mk

kernel/arch/dreamcast/gdb/gdb.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* KallistiOS ##version##
22
3-
arch/dreamcast/kernel/gdb/gdb.c
3+
arch/dreamcast/gdb/gdb.c
44
55
Copyright (C) Megan Potter
66
Copyright (C) Richard Moats

kernel/arch/dreamcast/gdb/gdb_break.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* KallistiOS ##version##
22
3-
arch/dreamcast/kernel/gdb/gdb_break.c
3+
arch/dreamcast/gdb/gdb_break.c
44
55
Copyright (C) Megan Potter
66
Copyright (C) Richard Moats

kernel/arch/dreamcast/gdb/gdb_ctrl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* KallistiOS ##version##
22
3-
arch/dreamcast/kernel/gdb/gdb_ctrl.c
3+
arch/dreamcast/gdb/gdb_ctrl.c
44
55
Copyright (C) Megan Potter
66
Copyright (C) Richard Moats

kernel/arch/dreamcast/gdb/gdb_internal.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* KallistiOS ##version##
22
3-
arch/dreamcast/kernel/gdb/gdb_internal.h
3+
arch/dreamcast/gdb/gdb_internal.h
44
55
Copyright (C) 2026 Andy Barajas
66

kernel/arch/dreamcast/gdb/gdb_mem.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* KallistiOS ##version##
22
3-
arch/dreamcast/kernel/gdb/gdb_mem.c
3+
arch/dreamcast/gdb/gdb_mem.c
44
55
Copyright (C) Megan Potter
66
Copyright (C) Richard Moats

0 commit comments

Comments
 (0)