File: nosaa.c

package info (click to toggle)
regina 2.2-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 3,332 kB
  • ctags: 4,775
  • sloc: ansic: 38,518; sh: 2,552; lex: 1,878; yacc: 1,028; makefile: 771
file content (28 lines) | stat: -rw-r--r-- 596 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* There is no need for rexxsaa.c or client.c with static binding.
 * We support stub routines for this reason here.
 * FIXME, FGC: We should move stuff from rexx.c to this file.
 */

#include "rexx.h"
int init_rexxsaa( tsd_t *TSD )
{
   TSD = TSD; /* keep compiler happy */
   return(1);
}

void deinit_rexxsaa( tsd_t *TSD )
{
   TSD = TSD; /* keep compiler happy */
}

void *IfcAllocateMemory( unsigned long size )
{
   size = size; /* keep compiler happy */
   return(NULL); /* should never happen! */
}

int init_client( tsd_t *TSD )
{
   TSD = TSD; /* keep compiler happy */
   return(1);
}