diff options
Diffstat (limited to 'allocator.c')
-rw-r--r-- | allocator.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/allocator.c b/allocator.c index beb83dd..9f58ee4 100644 --- a/allocator.c +++ b/allocator.c @@ -1,3 +1,9 @@ +/* + Copyright (C) 2019 Leo Tenenbaum. + This file is part of toc. toc is distributed under version 3 of the GNU General Public License, without any warranty whatsoever. + You should have received a copy of the GNU General Public License along with toc. If not, see <https://www.gnu.org/licenses/>. +*/ + static void *err_malloc(size_t bytes); static void *err_calloc(size_t n, size_t sz); static void *err_realloc(void *prev, size_t new_size); |