bringing SDL 1.2.14 from vendor into the main branch
[AROS-Contrib.git] / regina / nosaa.c
blobc4e559473d36b55cd3466522fa85b24af8a275dc
1 /* There is no need for rexxsaa.c or client.c with static binding.
2 * We support stub routines for this reason here.
3 * FIXME, FGC: We should move stuff from rexx.c to this file.
4 */
6 #include "rexx.h"
7 int init_rexxsaa( tsd_t *TSD )
9 TSD = TSD; /* keep compiler happy */
10 return(1);
13 void deinit_rexxsaa( tsd_t *TSD )
15 TSD = TSD; /* keep compiler happy */
18 void *IfcAllocateMemory( unsigned long size )
20 size = size; /* keep compiler happy */
21 return(NULL); /* should never happen! */
24 int init_client( tsd_t *TSD )
26 TSD = TSD; /* keep compiler happy */
27 return(1);