home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / lisp / blt1.000 / blt1 / blt-1.7-for-STk / userinit.c < prev   
Encoding:
C/C++ Source or Header  |  1995-02-10  |  1.1 KB  |  33 lines

  1. /*
  2.  *
  3.  * u s e r i n i t . c            -- The place where user put his/her
  4.  *                       initialization
  5.  *
  6.  * Copyright (C) 1993, 1994 Erick Gallesio - I3S - CNRS / UNSA <eg@unice.fr>
  7.  * 
  8.  *
  9.  * Permission to use, copy, and/or distribute this software and its
  10.  * documentation for any purpose and without fee is hereby granted, provided
  11.  * that both the above copyright notice and this permission notice appear in
  12.  * all copies and derived works.  Fees for distribution or use of this
  13.  * software or derived works may only be charged with express written
  14.  * permission of the copyright holder.  
  15.  * This software is provided ``as is'' without express or implied warranty.
  16.  *
  17.  * This software is a derivative work of other copyrighted softwares; the
  18.  * copyright notices of these softwares are placed in the file COPYRIGHTS
  19.  *
  20.  *
  21.  *           Author: Erick Gallesio [eg@kaolin.unice.fr]
  22.  *    Creation date: 23-Jan-1994 19:09
  23.  * Last file update: 10-Feb-1995 23:56
  24.  */
  25.  
  26. #include "stk.h"
  27.  
  28. void STk_user_init(void)
  29. {
  30.   /* Put here the code you want to be run at init time */
  31.   STk_init_blt();
  32. }
  33.