Forward compatibility: build relative-base link libraries where needed
[AROS.git] / workbench / libs / rexxsupport / rexxsupport_init.c
blob4f1a165629aba06b22b58263cc77a14d36fd9d9a
1 /*
2 Copyright © 1995-2006, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: RexxSupport initialization code.
6 Lang: English
7 */
9 #include <exec/types.h>
10 #include <exec/libraries.h>
11 #include <dos/dosextens.h>
12 #include <aros/symbolsets.h>
13 #include <aros/debug.h>
15 #include <proto/exec.h>
16 #include <proto/alib.h>
18 #include "rexxsupport_intern.h"
19 #include LC_LIBDEFS_FILE
21 int errno;
23 static int Init(LIBBASETYPEPTR LIBBASE)
25 NewList(&RSBI(LIBBASE)->openports);
27 return TRUE;
30 ADD2INITLIB(Init, 0);