Add missing declaration of ftime.

Submitted by:	Sergey Matveychuk <sem@ciam.ru>
Obtained from:	NetBSD
MFC after:	1 week
This commit is contained in:
David Malone 2001-12-03 15:07:54 +00:00
parent b001d36fa3
commit ace25b89e1

View File

@ -50,4 +50,12 @@ struct timeb {
short dstflag; /* DST == non-zero */
};
#ifndef _KERNEL
#include <sys/cdefs.h>
__BEGIN_DECLS
int ftime __P((struct timeb *));
__END_DECLS
#endif /* _KERNEL */
#endif