diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2012-02-25 19:23:28 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2012-02-25 19:23:28 -0800 |
commit | cdd51a57490deb19a0bd3d1b77d2e2aac4d6316b (patch) | |
tree | 3c9024cec1a2f50da16f0797312ecd54add6404c /debug.c | |
parent | 581d591c4f6d8ed995fcc52cf692953ff6d8b517 (diff) | |
download | txr-cdd51a57490deb19a0bd3d1b77d2e2aac4d6316b.tar.gz txr-cdd51a57490deb19a0bd3d1b77d2e2aac4d6316b.tar.bz2 txr-cdd51a57490deb19a0bd3d1b77d2e2aac4d6316b.zip |
* arith.c: Updated copyright year.
* arith.h: Likewise.
* debug.c: Added copyright header.
* debug.h: Updated copyright year.
* eval.c: Likewise.
* eval.h: Likewise.
* filter.c: Likewise.
* filter.h: Likewise.
* gc.c: Likewise.
* gc.h: Likewise.
* hash.c: Likewise.
* hash.h: Likewise.
* lib.c: Likewise.
* lib.h: Likewise.
* match.c: Likewise.
* match.h: Likewise.
* parser.h: Likewise.
* regex.c: Likewise.
* regex.h: Likewise.
* stream.c: Likewise.
* stream.h: Likewise.
* txr.c: Likewise, and e-mail address.
* txr.h: Updated copyright year.
* unwind.c: Likewise.
* unwind.h: Likewise.
Diffstat (limited to 'debug.c')
-rw-r--r-- | debug.c | 28 |
1 files changed, 28 insertions, 0 deletions
@@ -1,3 +1,31 @@ +/* This file is generated using txr arith.txr > arith.c! + * + * Copyright 2012 + * Kaz Kylheku <kaz@kylheku.com> + * Vancouver, Canada + * All rights reserved. + * + * BSD License: + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in + * the documentation and/or other materials provided with the + * distribution. + * 3. The name of the author may not be used to endorse or promote + * products derived from this software without specific prior + * written permission. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ + #include <stdio.h> #include <stdlib.h> #include <string.h> |