diff options
author | June McEnroe <programble@gmail.com> | 2017-08-24 21:03:40 -0400 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2017-08-24 21:03:40 -0400 |
commit | 2e079a437d60438d75b4e34c5d99b15ed8151f17 (patch) | |
tree | a2922a1ee9cab1c1de0758f013649075034c0a86 | |
parent | Add license to C files (diff) | |
download | torus-2e079a437d60438d75b4e34c5d99b15ed8151f17.tar.gz torus-2e079a437d60438d75b4e34c5d99b15ed8151f17.zip |
Add license to torus.h as well
Diffstat (limited to '')
-rw-r--r-- | torus.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/torus.h b/torus.h index 6b28f8c..06aaee2 100644 --- a/torus.h +++ b/torus.h @@ -4,6 +4,22 @@ #include <stdint.h> #include <time.h> +/* + * Copyright (c) 2017, Curtis McEnroe <curtis@cmcenroe.me> + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + #define ALIGNED(x) __attribute__((aligned(x))) enum { |