xref: /csrg-svn/old/lisp/fp/fp.tahoe/fp.c (revision 36135)
1*36135Sbostic /*
2*36135Sbostic  * Copyright (c) 1988 The Regents of the University of California.
3*36135Sbostic  * All rights reserved.
4*36135Sbostic  *
5*36135Sbostic  * Redistribution and use in source and binary forms are permitted
6*36135Sbostic  * provided that the above copyright notice and this paragraph are
7*36135Sbostic  * duplicated in all such forms and that any documentation,
8*36135Sbostic  * advertising materials, and other materials related to such
9*36135Sbostic  * distribution and use acknowledge that the software was developed
10*36135Sbostic  * by the University of California, Berkeley.  The name of the
11*36135Sbostic  * University may not be used to endorse or promote products derived
12*36135Sbostic  * from this software without specific prior written permission.
13*36135Sbostic  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
14*36135Sbostic  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
15*36135Sbostic  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
16*36135Sbostic  */
17*36135Sbostic 
18*36135Sbostic #ifndef lint
19*36135Sbostic char copyright[] =
20*36135Sbostic "@(#) Copyright (c) 1988 The Regents of the University of California.\n\
21*36135Sbostic  All rights reserved.\n";
22*36135Sbostic #endif /* not lint */
23*36135Sbostic 
24*36135Sbostic #ifndef lint
25*36135Sbostic static char sccsid[] = "@(#)fp.c	5.1 (Berkeley) 10/25/88";
26*36135Sbostic #endif /* not lint */
27*36135Sbostic 
28*36135Sbostic #include <stdio.h>
29*36135Sbostic 
30*36135Sbostic main()
31*36135Sbostic {
32*36135Sbostic 	fputs("fp: fp has not been ported to the tahoe.\n", stderr);
33*36135Sbostic }
34