From c8a1e0531d7ccdce5f76aec8a5b6147c686d3403 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Tue, 8 Apr 2025 10:49:18 -0400 Subject: fix old checkout --- kernel/old/include/list.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kernel/old/include/list.h') diff --git a/kernel/old/include/list.h b/kernel/old/include/list.h index 0be11e9..28c2377 100644 --- a/kernel/old/include/list.h +++ b/kernel/old/include/list.h @@ -35,7 +35,7 @@ // The list structure typedef struct list_s { - struct list_s *next; // link to the successor + struct list_s *next; // link to the successor } list_t; /* @@ -50,7 +50,7 @@ typedef struct list_s { ** @param[in,out] list The address of a list_t variable ** @param[in] data The data to prepend to the list */ -void list_add(list_t *list, void *data); +void list_add( list_t *list, void *data ); /** ** Name: list_remove @@ -61,7 +61,7 @@ void list_add(list_t *list, void *data); ** ** @return a pointer to the removed data, or NULL if the list was empty */ -void *list_remove(list_t *list); +void *list_remove( list_t *list ); #endif /* !ASM_SRC */ -- cgit v1.2.3-freya