Update license to include contributors.

Use 4 spaces for indentation.
This commit is contained in:
Calvin Rose 2019-02-05 19:11:43 -05:00
parent f6a3853131
commit 1394dbbd57
2 changed files with 73 additions and 77 deletions

View File

@ -1,4 +1,4 @@
Copyright (c) 2019 Calvin Rose
Copyright (c) 2019 Calvin Rose and contributors
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in

View File

@ -26,8 +26,6 @@ static int num_array_gc(void *p, size_t s) {
Janet num_array_get(void *p, Janet key);
void num_array_put(void *p, Janet key, Janet value);
static const JanetAbstractType num_array_type = {
"numarray",
num_array_gc,
@ -108,8 +106,6 @@ Janet num_array_get(void *p, Janet key) {
return value;
}
static const JanetReg cfuns[] = {
{"numarray/new", num_array_new,
"(numarray/new size)\n\n"