From mboxrd@z Thu Jan 1 00:00:00 1970 Date: Thu, 11 Aug 1994 05:28:19 -0400 From: Hans-Peter Bischof bischof@verdi.informatik.Uni-Osnabrueck.DE Subject: $CC <---> $ALEF Topicbox-Message-UUID: 02fb1f1c-eac8-11e9-9e20-41e7f4b1d025 Message-ID: <19940811092819.w8mFnlx61oZ9NWqrTn6n91bGkShTH_KZsLBg34lltUc@z> 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