Updating copyright years.

This commit is contained in:
Alex Shinn 2015-04-09 01:28:02 +09:00
parent 9998a5619c
commit 4dda923081
13 changed files with 13 additions and 13 deletions

View file

@ -1,4 +1,4 @@
Copyright (c) 2009-2012 Alex Shinn Copyright (c) 2009-2015 Alex Shinn
All rights reserved. All rights reserved.
Redistribution and use in source and binary forms, with or without Redistribution and use in source and binary forms, with or without

View file

@ -1,5 +1,5 @@
/* bignum.c -- bignum support */ /* bignum.c -- bignum support */
/* Copyright (c) 2009-2013 Alex Shinn. All rights reserved. */ /* Copyright (c) 2009-2015 Alex Shinn. All rights reserved. */
/* BSD-style license: http://synthcode.com/license.txt */ /* BSD-style license: http://synthcode.com/license.txt */
#include "chibi/sexp.h" #include "chibi/sexp.h"

2
eval.c
View file

@ -1,5 +1,5 @@
/* eval.c -- evaluator library implementation */ /* eval.c -- evaluator library implementation */
/* Copyright (c) 2009-2013 Alex Shinn. All rights reserved. */ /* Copyright (c) 2009-2015 Alex Shinn. All rights reserved. */
/* BSD-style license: http://synthcode.com/license.txt */ /* BSD-style license: http://synthcode.com/license.txt */
#include "chibi/eval.h" #include "chibi/eval.h"

2
gc.c
View file

@ -1,5 +1,5 @@
/* gc.c -- simple mark&sweep garbage collector */ /* gc.c -- simple mark&sweep garbage collector */
/* Copyright (c) 2009-2012 Alex Shinn. All rights reserved. */ /* Copyright (c) 2009-2015 Alex Shinn. All rights reserved. */
/* BSD-style license: http://synthcode.com/license.txt */ /* BSD-style license: http://synthcode.com/license.txt */
#if ! SEXP_USE_BOEHM && ! SEXP_USE_MALLOC #if ! SEXP_USE_BOEHM && ! SEXP_USE_MALLOC

View file

@ -1,5 +1,5 @@
/* bignum.h -- header for bignum utilities */ /* bignum.h -- header for bignum utilities */
/* Copyright (c) 2009-2012 Alex Shinn. All rights reserved. */ /* Copyright (c) 2009-2015 Alex Shinn. All rights reserved. */
/* BSD-style license: http://synthcode.com/license.txt */ /* BSD-style license: http://synthcode.com/license.txt */
#ifndef SEXP_BIGNUM_H #ifndef SEXP_BIGNUM_H

View file

@ -1,5 +1,5 @@
/* eval.h -- headers for eval library */ /* eval.h -- headers for eval library */
/* Copyright (c) 2009-2011 Alex Shinn. All rights reserved. */ /* Copyright (c) 2009-2015 Alex Shinn. All rights reserved. */
/* BSD-style license: http://synthcode.com/license.txt */ /* BSD-style license: http://synthcode.com/license.txt */
#ifndef SEXP_EVAL_H #ifndef SEXP_EVAL_H

View file

@ -1,5 +1,5 @@
/* features.h -- general feature configuration */ /* features.h -- general feature configuration */
/* Copyright (c) 2009-2012 Alex Shinn. All rights reserved. */ /* Copyright (c) 2009-2015 Alex Shinn. All rights reserved. */
/* BSD-style license: http://synthcode.com/license.txt */ /* BSD-style license: http://synthcode.com/license.txt */
/* uncomment this to disable most features */ /* uncomment this to disable most features */

View file

@ -1,5 +1,5 @@
/* sexp.h -- header for sexp library */ /* sexp.h -- header for sexp library */
/* Copyright (c) 2009-2013 Alex Shinn. All rights reserved. */ /* Copyright (c) 2009-2015 Alex Shinn. All rights reserved. */
/* BSD-style license: http://synthcode.com/license.txt */ /* BSD-style license: http://synthcode.com/license.txt */
#ifndef SEXP_H #ifndef SEXP_H

2
main.c
View file

@ -1,5 +1,5 @@
/* main.c -- chibi-scheme command-line app */ /* main.c -- chibi-scheme command-line app */
/* Copyright (c) 2009-2013 Alex Shinn. All rights reserved. */ /* Copyright (c) 2009-2015 Alex Shinn. All rights reserved. */
/* BSD-style license: http://synthcode.com/license.txt */ /* BSD-style license: http://synthcode.com/license.txt */
#ifdef EMSCRIPTEN #ifdef EMSCRIPTEN

View file

@ -1,5 +1,5 @@
/* plan9.c -- extended Plan 9 system utils */ /* plan9.c -- extended Plan 9 system utils */
/* Copyright (c) 2009-2012 Alex Shinn. All rights reserved. */ /* Copyright (c) 2009-2015 Alex Shinn. All rights reserved. */
/* BSD-style license: http://synthcode.com/license.txt */ /* BSD-style license: http://synthcode.com/license.txt */
#include "chibi/eval.h" #include "chibi/eval.h"

2
sexp.c
View file

@ -1,5 +1,5 @@
/* sexp.c -- standalone sexp library implementation */ /* sexp.c -- standalone sexp library implementation */
/* Copyright (c) 2009-2012 Alex Shinn. All rights reserved. */ /* Copyright (c) 2009-2015 Alex Shinn. All rights reserved. */
/* BSD-style license: http://synthcode.com/license.txt */ /* BSD-style license: http://synthcode.com/license.txt */
#include "chibi/sexp.h" #include "chibi/sexp.h"

View file

@ -1,5 +1,5 @@
/* simplify.c -- basic simplification pass */ /* simplify.c -- basic simplification pass */
/* Copyright (c) 2010-2013 Alex Shinn. All rights reserved. */ /* Copyright (c) 2010-2015 Alex Shinn. All rights reserved. */
/* BSD-style license: http://synthcode.com/license.txt */ /* BSD-style license: http://synthcode.com/license.txt */
#include "chibi/eval.h" #include "chibi/eval.h"

2
vm.c
View file

@ -1,5 +1,5 @@
/* vm.c -- stack-based virtual machine backend */ /* vm.c -- stack-based virtual machine backend */
/* Copyright (c) 2009-2012 Alex Shinn. All rights reserved. */ /* Copyright (c) 2009-2015 Alex Shinn. All rights reserved. */
/* BSD-style license: http://synthcode.com/license.txt */ /* BSD-style license: http://synthcode.com/license.txt */
#if SEXP_USE_NATIVE_X86 #if SEXP_USE_NATIVE_X86