9fans archive / 1994 / 08 / 5 /    prev next

From: Hans-Peter Bischof bischof@ver...
Subject: $CC <---> $ALEF
Date: Thu, 11 Aug 1994 05:28:19 -0400



Hi,

i wan't to mix an alef source and a C source like this.

	$ALEF -w -c alef_src.l	--> alef_src.$O
	$CC   -w    cc_src.c	--> cc_src.$O
	$LD -o target alef_src.$O cc_src.$O

This failed, because some declarations in alef.h and /sys/include/*h
mismatch. An example:

	grep realloc alef.h
	void    *realloc(void*, uint);

	grep realloc *h libc.h
	extern   void*   realloc(void*, long);


and uint is not a long.


Question: Exist an alef implementation
          without these problems?


Thanks for your help.

-hp