Back out WARNS cleanup: this is apparently vendor code, even though

most of the files aren't on the vendor branch.

Submitted by:	wollman
This commit is contained in:
Dima Dorfman 2001-07-18 11:27:04 +00:00
parent d72ca9ddd1
commit b7ca471a22
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=79858
5 changed files with 8 additions and 14 deletions

View File

@ -99,7 +99,7 @@ char * imalloc P((int n));
void * irealloc P((void * pointer, int size));
void icfree P((char * pointer));
void ifree P((char * pointer));
const char * scheck P((const char *string, const char *format));
char * scheck P((const char *string, const char *format));
/*
** Finally, some convenience items.

View File

@ -13,7 +13,7 @@ static const char rcsid[] =
#include "private.h"
const char *
char *
scheck(string, format)
const char * const string;
const char * const format;
@ -22,7 +22,7 @@ const char * const format;
register const char * fp;
register char * tp;
register int c;
register const char * result;
register char * result;
char dummy;
static char nada;
@ -58,7 +58,7 @@ const char * const format;
*tp++ = 'c';
*tp = '\0';
if (sscanf(string, fbuf, &dummy) != 1)
result = format;
result = (char *) format;
ifree(fbuf);
return result;
}

View File

@ -3,7 +3,6 @@
.PATH: ${.CURDIR}/..
PROG= zdump
WARNS?= 2
SRCS= zdump.c ialloc.c scheck.c
MAN= ${.CURDIR}/../zdump.8

View File

@ -89,7 +89,6 @@ static int addtype P((long gmtoff, const char * abbr, int isdst,
static void leapadd P((time_t t, int positive, int rolling, int count));
static void adjleap P((void));
static void associate P((void));
static int atcomp P((const void * avp, const void * bvp));
static int ciequal P((const char * ap, const char * bp));
static void convert P((long val, char * buf));
static void dolink P((const char * fromfile, const char * tofile));
@ -130,7 +129,6 @@ static void setgroup P((gid_t *flag, const char *name));
static void setuser P((uid_t *flag, const char *name));
static time_t tadd P((time_t t1, long t2));
static void usage P((void));
static void warning P((const char * const string));
static void writezone P((const char * name));
static int yearistype P((int year, const char * type));
@ -1362,14 +1360,12 @@ FILE * const fp;
static int
atcomp(avp, bvp)
const void * avp;
const void * bvp;
void * avp;
void * bvp;
{
if (((const struct attype *) avp)->at <
((const struct attype *) bvp)->at)
if (((struct attype *) avp)->at < ((struct attype *) bvp)->at)
return -1;
else if (((const struct attype *) avp)->at >
((const struct attype *) bvp)->at)
else if (((struct attype *) avp)->at > ((struct attype *) bvp)->at)
return 1;
else return 0;
}

View File

@ -3,7 +3,6 @@
.PATH: ${.CURDIR}/..
PROG= zic
WARNS?= 2
SRCS= zic.c ialloc.c scheck.c
MAN= ${.CURDIR}/../zic.8