~ubuntu-branches/ubuntu/quantal/gclcvs/quantal

« back to all changes in this revision

Viewing changes to unixport/sys_kcn.c

  • Committer: Bazaar Package Importer
  • Author(s): Camm Maguire
  • Date: 2004-06-24 15:13:46 UTC
  • Revision ID: james.westby@ubuntu.com-20040624151346-xh0xaaktyyp7aorc
Tags: 2.7.0-26
C_GC_OFFSET is 2 on m68k-linux

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include "../h/include.h"
 
2
 
 
3
extern void   user_init();  
 
4
 
 
5
void init_or_load1 ();
 
6
#define init_or_load(fn,file) do {extern int fn(); init_or_load1(fn,file);} \
 
7
   while(0)
 
8
 
 
9
init_init()
 
10
{
 
11
 
 
12
  load("../lsp/export.lsp");
 
13
  init_or_load(init_defmacro,"../lsp/defmacro.o");
 
14
  init_or_load(init_evalmacros,"../lsp/evalmacros.o");
 
15
  init_or_load(init_top,"../lsp/top.o");
 
16
  init_or_load(init_module,"../lsp/module.o");
 
17
  load("../lsp/autoload.lsp");
 
18
  load("../lsp/auto.lsp");      
 
19
}
 
20
 
 
21
 
 
22
init_system()
 
23
{
 
24
  user_init();
 
25
}
 
26