=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/file/Attic/apprentice.c,v retrieving revision 1.13 retrieving revision 1.14 diff -c -r1.13 -r1.14 *** src/usr.bin/file/Attic/apprentice.c 2002/03/14 06:51:41 1.13 --- src/usr.bin/file/Attic/apprentice.c 2002/06/05 13:46:44 1.14 *************** *** 1,4 **** ! /* $OpenBSD: apprentice.c,v 1.13 2002/03/14 06:51:41 mpech Exp $ */ /* * apprentice - make one pass through /etc/magic, learning its secrets. --- 1,4 ---- ! /* $OpenBSD: apprentice.c,v 1.14 2002/06/05 13:46:44 itojun Exp $ */ /* * apprentice - make one pass through /etc/magic, learning its secrets. *************** *** 36,42 **** #include "file.h" #ifndef lint ! static char *moduleid = "$OpenBSD: apprentice.c,v 1.13 2002/03/14 06:51:41 mpech Exp $"; #endif /* lint */ #define EATAB {while (isascii((unsigned char) *l) && \ --- 36,42 ---- #include "file.h" #ifndef lint ! static char *moduleid = "$OpenBSD: apprentice.c,v 1.14 2002/06/05 13:46:44 itojun Exp $"; #endif /* lint */ #define EATAB {while (isascii((unsigned char) *l) && \ *************** *** 133,142 **** /* * extend the sign bit if the comparison is to be signed */ ! uint32 signextend(m, v) struct magic *m; ! uint32 v; { if (!(m->flag & UNSIGNED)) switch(m->type) { --- 133,142 ---- /* * extend the sign bit if the comparison is to be signed */ ! uint32_t signextend(m, v) struct magic *m; ! uint32_t v; { if (!(m->flag & UNSIGNED)) switch(m->type) { *************** *** 159,165 **** case LONG: case BELONG: case LELONG: ! v = (int32) v; break; case STRING: break; --- 159,165 ---- case LONG: case BELONG: case LELONG: ! v = (int32_t) v; break; case STRING: break;