aboutsummaryrefslogtreecommitdiff
path: root/src/stdlib/tables.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdlib/tables.c')
-rw-r--r--src/stdlib/tables.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/stdlib/tables.c b/src/stdlib/tables.c
index fabdad4f..974e3542 100644
--- a/src/stdlib/tables.c
+++ b/src/stdlib/tables.c
@@ -1,8 +1,3 @@
-// table.c - C Hash table implementation
-// Copyright 2024 Bruce Hill
-// Provided under the MIT license with the Commons Clause
-// See included LICENSE for details.
-
// Hash table (aka Dictionary) Implementation
// Hash keys and values are stored *by value*
// The hash insertion/lookup implementation is based on Lua's tables,