1 package uk.co.codemist.jlisp.core;
2 
3 //
4 // This file is part of the Jlisp implementation of Standard Lisp
5 // Copyright \u00a9 (C) Codemist Ltd, 1998-2015.
6 //
7 
8 /**************************************************************************
9  * Copyright (C) 1998-2015, Codemist Ltd.                      A C Norman *
10  *                            also contributions from Vijay Chauhan, 2002 *
11  *                                                                        *
12  * Redistribution and use in source and binary forms, with or without     *
13  * modification, are permitted provided that the following conditions are *
14  * met:                                                                   *
15  *                                                                        *
16  *     * Redistributions of source code must retain the relevant          *
17  *       copyright notice, this list of conditions and the following      *
18  *       disclaimer.                                                      *
19  *     * Redistributions in binary form must reproduce the above          *
20  *       copyright notice, this list of conditions and the following      *
21  *       disclaimer in the documentation and/or other materials provided  *
22  *       with the distribution.                                           *
23  *                                                                        *
24  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS    *
25  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT      *
26  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS      *
27  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE         *
28  * COPYRIGHT OWNERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,   *
29  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,   *
30  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS  *
31  * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND *
32  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR  *
33  * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF     *
34  * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH   *
35  * DAMAGE.                                                                *
36  *************************************************************************/
37 
38 // $Id: U30.java 3141 2015-06-21 19:23:30Z arthurcnorman $
39 
40 
41 // U30.java
42 
43 // Each built-in function is created wrapped in a class
44 // that is derived from BuiltinFunction.
45 
46 import java.io.*;
47 import java.util.*;
48 import java.text.*;
49 import java.math.BigInteger;
50 
51 class U30 extends Uxx
52 {
U30()53     U30()
54     {   builtins = new Object [][]
55         {
56         };
57     }
58 }
59 
60 // end of U30.java
61 
62