[Prev][Next][Index]
A Bug?
- From: Michael Golden <mgolden@eecs.umich.edu>
- Subject: A Bug?
- To: sage-bugs@cica.indiana.edu
- Date: Sat, 14 Jan 1995 11:34:59 -0500 (EST)
When I take the following program (called test.c) and perform the
following steps:
sagecc test.c
unparse test.dep
I get error messages. It does not seem to parse the second external
declaration correctly. The first one works fine. The message is
WARNING: Type not found
and if I look at the type of those functions, it is NULL.
HELP!
Thanks...
Michael
-------------------------------------------------------
mgolden@eecs.umich.edu
All the passions make us commit faults; love makes us commit the most
ridiculous ones.
-- La Rochefoucauld
----------------------test.c begins here-----------------------------------
#include <stdio.h>
extern int
memcmp( const void *__s1, const void *__s2, size_t __n ),
strcmp( const char *__s1, const char *__s2 ),
strcoll( const char *__s1, const char *__s2 ),
strncmp( const char *__s1, const char *__s2, size_t __n );
extern int
a(),
b(),
c();
main ()
{
printf ("Hello world\n");
}