This is the RC compiler, a compiler for a dialect of C with safe, region-based
memory management. See the user manual in doc/user.ps for a full description
of RC.

The RC compiler is distributed under the GNU General Public License. See
the COPYRIGHT and COPYING files for more details. Note that the region
libraries (lib/, libcompat/) and the test applications (tests/*) are not
distributed under the GNU General Public License. See each individual
directory for details.

The test applications are large and are distributed in a separate tar file.
If the tests directory is not present, you can get them at
  http://www.cs.berkeley.edu/~dgay/rctests.tar.gz


To compile and install: make sure you have gcc, perl and GNU's make.

  ./configure --prefix=<installation point>
  make install  ; make sure you use GNU's make  

To test:
  cd tests/cfrac
  make
  ./cfrac 23551
  ; should output: 23551 = 11 * 2141
