Re: [Info-ingres] abf 3gl function



At 1:44 PM -0500 11/22/2005,I wrote:
>
>#define MAX_LEN 128 /* or whatever you need */
>char *myfunction()
>static char return_area[MAX_LEN + 1];
>
....

For those unskilled in C -- I accidently left out the opening
brace on the function body. It should read:

char *myfunction()
{
static char ....

Karl
.