1
0
Fork 0

More streamlining of single linked lists.

This commit is contained in:
wael 2022-02-16 17:07:05 +02:00
parent ac7e772a05
commit c5ff983bc2
No known key found for this signature in database
GPG Key ID: C0A5FBF4558963D4
1 changed files with 3 additions and 1 deletions

View File

@ -21,8 +21,10 @@
#define SINGLE_LINKED_LIST_H
#include "../nodes/single_node.h"
/* Include assert.h to allow code generation, but only run with debug flag. */
#ifndef DEBUG
#ifdef DEBUG
#ifndef NDEBUG
#define NDEBUG
#endif /* NDEBUG. */
#endif /* DEBUG. */
#include <assert.h>