aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2020-08-17 22:33:18 +0200
committerThomas Schmucker <ts@its1.de>2020-08-17 22:33:18 +0200
commitf6f15c219312f7f3a9d6d850861bafa6b4e9613a (patch)
tree1668162c6e5fc83f962d8970da62a33c4f49f6b1
parentdaef8f38f309bb8203547a574caed7974ce9fcbd (diff)
downloaddata-structures-f6f15c219312f7f3a9d6d850861bafa6b4e9613a.tar.gz
data-structures-f6f15c219312f7f3a9d6d850861bafa6b4e9613a.tar.bz2
data-structures-f6f15c219312f7f3a9d6d850861bafa6b4e9613a.zip
überflüssiges Makro NELEM entfernt!
-rw-r--r--deque.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/deque.c b/deque.c
index bf233cf..91c7a50 100644
--- a/deque.c
+++ b/deque.c
@@ -3,8 +3,6 @@
3#include <stdio.h> 3#include <stdio.h>
4#include <stdlib.h> 4#include <stdlib.h>
5 5
6#define NELEM(x) (sizeof(x) / sizeof(x[0]))
7
8typedef int T; 6typedef int T;
9 7
10#define START_MAP_CAPACITY 4 8#define START_MAP_CAPACITY 4