tokenizer.cc: yy_flex_alloc(), yy_flex_free

Berndt Josef Wulf wulf at ping.net.au
Mon Jan 10 14:22:17 GMT 2000


G'day,

I've cvsup'ed today's source tree and experienced problems at the
linking stage of kdevelop due to unreferenced function calls in
tokenizer.cc.

At close look, it was found that the prototypes were missing in
tokenizer.cc. The linking process completed successfully after 
defining these in tokenziser.cc.

I am not sure if this was done intentionally, but thought it wouldn't
hurt to mention it here.

Find patches applied attached at the end of this email.

I really start to get the taste of KDevelop... keep up the good
works...

cheerio Berndt
-- 
Name    : Berndt Josef Wulf            | +++ With BSD on Packet Radio +++
E-Mail  : wulf at ping.net.au             |    tfkiss, tnt, dpbox, wampes
ICQ     : 18196098                     |  VK5ABN, Nairne, South Australia 
URL     : http://www.ping.net.au/~wulf | MBOX : vk5abn at vk5abn.#lmr.#sa.au.oc
Sysinfo : DEC AXPpci33+, NetBSD-1.4    | BBS  : vk5abn.#lmr.#sa.aus.oc 


--- kdevelop/classparser/tokenizer.cc.orig	Mon Jan 10 23:48:17 2000
+++ kdevelop/classparser/tokenizer.cc	Tue Jan 11 00:15:55 2000
@@ -205,7 +205,9 @@
  */
 #define YY_CURRENT_BUFFER yy_current_buffer
 
-
+static void *yy_flex_alloc YY_PROTO(( yy_size_t ));
+static void *yy_flex_realloc YY_PROTO(( void *, yy_size_t ));
+static void yy_flex_free YY_PROTO(( void * )); 
 
 #define yy_new_buffer yy_create_buffer
 




More information about the KDevelop mailing list