diff options
Diffstat (limited to 'src/ll-internal.c')
| -rw-r--r-- | src/ll-internal.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/ll-internal.c b/src/ll-internal.c deleted file mode 100644 index e56302e..0000000 --- a/src/ll-internal.c +++ /dev/null | |||
| @@ -1,17 +0,0 @@ | |||
| 1 | #include "ll-internal.h" | ||
| 2 | #include "shared.h" | ||
| 3 | |||
| 4 | #include <stdlib.h> | ||
| 5 | |||
| 6 | dllnode * dllnode_init(void *data, dll_freecb fcb) { | ||
| 7 | dllnode *n = VALLOC(1, sizeof(*n)); | ||
| 8 | if(!n) | ||
| 9 | return NULL; | ||
| 10 | |||
| 11 | n->data = data; | ||
| 12 | n->freecb = fcb; | ||
| 13 | n->prev = NULL; | ||
| 14 | n->next = NULL; | ||
| 15 | |||
| 16 | return n; | ||
| 17 | } \ No newline at end of file | ||
