summaryrefslogtreecommitdiff
path: root/cs_linkedlist.c
diff options
context:
space:
mode:
authorOskar <[email protected]>2024-05-11 14:53:25 +0200
committerOskar <[email protected]>2024-05-11 14:53:25 +0200
commit2bd0c8f5983e954b25ad9b603229e84d675946b8 (patch)
tree6498f474801ec477ec1b9ff766ebc992b71250dd /cs_linkedlist.c
parentae64013ed9550a9ca2fd555068388125a0b05e79 (diff)
readme
Diffstat (limited to 'cs_linkedlist.c')
-rw-r--r--cs_linkedlist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cs_linkedlist.c b/cs_linkedlist.c
index 657aeb8..1361ad0 100644
--- a/cs_linkedlist.c
+++ b/cs_linkedlist.c
@@ -13,7 +13,7 @@ struct waster {
struct waster *next;
};
-struct waster *newnode () {
+struct waster *newnode (void) {
struct waster *new = malloc(sizeof(struct waster));
return new;
@@ -50,7 +50,7 @@ void freellist(struct waster *wr1) {
}
}
-int main () {
+int main (void) {
uint64_t passes = 4; // 1 pass = the whole linked list. So 4 passes would be to print the linked list 4 times.
uint64_t passstep = 1; // counter to compare to passes