/* * This file is an attempt to shut lint up about certain * common complaints. * * rcsid="$Header: /ufs/repository/magic/misc/lintfix.c,v 1.1.1.1 2000/03/29 18:35:08 rajit Exp $" */ #include /*VARARGS2*/ /*ARGSUSED*/ sscanf(s, fmt, a) char *s, *fmt; { return(0); } /*VARARGS2*/ /*ARGSUSED*/ fprintf(f, fmt, a) FILE *f; char *fmt; { return (0); } /*VARARGS1*/ /*ARGSUSED*/ printf(fmt, a) char *fmt; { return (0); } /*VARARGS2*/ /*ARGSUSED*/ /* sprintf is 'char *' in , but not in the man page! */ char * sprintf(s, fmt, a) char *s; char *fmt; { return (0); }