#include <stdio.h>
main(){
char *i = "TEST 1";
char *j = "sss";
dialmsg("X: %s %s \n", i, j);
}
dialmsg(s, args)
char *s ;
struct { char _arg[16] ; } args;
{
(void) fprintf(stderr, s, args) ;
(void) fflush(stderr) ;
}
Please advise how i can make the above function to work.
hamid
u
_______________________________________________
Bug-sh-utils mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-sh-utils
