bug-sh-utils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Bug-sh-utils] printf


From: hamid amjadi
Subject: [Bug-sh-utils] printf
Date: Mon, 18 Sep 2000 11:59:15 -0700

#include <stdio.h>
main(){
char  *i = "TEST 1";
int j = 1;
dialmsg("X: %s %d \n", i, j);
}

dialmsg(
char *s ,
void *args )
{

 (void) fprintf(stderr, s, args) ;
 (void) fflush(stderr) ;
 }

please advise why the above program does not work in linux.

thanks

hamid




reply via email to

[Prev in Thread] Current Thread [Next in Thread]