summaryrefslogtreecommitdiff
path: root/kernel/old/include/list.h
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-04-08 10:49:18 -0400
committerFreya Murphy <freya@freyacat.org>2025-04-08 10:49:18 -0400
commitc8a1e0531d7ccdce5f76aec8a5b6147c686d3403 (patch)
tree2a68ab7da901a96fea975ca2ec02a9c77137686b /kernel/old/include/list.h
parenttty => term (diff)
downloadcomus-c8a1e0531d7ccdce5f76aec8a5b6147c686d3403.tar.gz
comus-c8a1e0531d7ccdce5f76aec8a5b6147c686d3403.tar.bz2
comus-c8a1e0531d7ccdce5f76aec8a5b6147c686d3403.zip
fix old checkout
Diffstat (limited to 'kernel/old/include/list.h')
-rw-r--r--kernel/old/include/list.h6
1 files changed, 3 insertions, 3 deletions
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 */