summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dseg.c1
-rw-r--r--scope.c1
2 files changed, 0 insertions, 2 deletions
diff --git a/dseg.c b/dseg.c
index 7236b88..120b3ae 100644
--- a/dseg.c
+++ b/dseg.c
@@ -3,7 +3,6 @@
#include <stdio.h>
#include <string.h>
#define DSEG_PANIC(msg) {fprintf(stderr, "dseg error: " msg "\n"); exit(1);}
-#define DEFAULT_SIZE 16
#define STRING_PATTERN "str%llu"
static integral_t string_counter = 0;
diff --git a/scope.c b/scope.c
index f47545e..fdf610b 100644
--- a/scope.c
+++ b/scope.c
@@ -1,7 +1,6 @@
#include "scope.h"
#include <stdlib.h>
#include <string.h>
-#define DEFAULT_SIZE 16
static integral_t hash_name(const char* name, integral_t cap) {
integral_t hash = 0, i = 0;