/*
 * BigNum multiprecision integer math library.
 * Copyright (c) 1995 Colin Plumb.  All rights reserved.
 *
 * Under copyright law, you may not copy nor modify this work without my
 * permission.  I grant limited permission, as follows, to any recipient
 * of this software ("you") only if, in consideration of this grant of
 * license, you agree to the following terms.  You may use and distribute
 * copies of this software freely, in source code or compiled form, for
 * the purpose of using Sun's reference SKIP implementation.  You may
 * modify it to further that end, and distribute the resultant derivative
 * work, but only if you do so under these same terms, and send me a copy
 * of your source code modifications with permission for me to use and
 * distribute them as I wish (you may place your modifications in the
 * public domain, assign me the copyright, or grant me an unlimited
 * license to modify and distribute them).  I may grant permission to use
 * this under other terms, if you ask me.  For licensing under alternate
 * terms, contact Philip Zimmermann <prz@acm.org>.
 *
 * Warranties:
 *   The author does not guarantee that this software will do anything more
 *   than take up storage space, nor that if it does do something, it will
 *   be what you want it to do.  This software is provided "as is," with no
 *   warranty expressed or implied, including any warranty of merchantability
 *   or fitness for a particular purpose.  In no event will the author be
 *   responsible for indirect or consequential damages including, without
 *   limitation, loss of income, psychiatric care, or alimony.  Neither shall
 *   the author's liability exceed the amount paid for the software.  Since
 *   it is being distributed for free, don't expect very much.
 */
#if HAVE_CONFIG_H
#include "config.h"	/* For "const"! */
#endif
/* Force inclusion of this... */
#include "legal.h"
volatile const char bnCopyright[] = "Copyright (c) 1995 Colin Plumb.";
