1 /* $Id: mstime.c,v 1.6 2003-04-21 22:57:39 phil Exp $ */
2 
3 #ifdef HAVE_CONFIG_H
4 #include "config.h"
5 #endif /* HAVE_CONFIG_H defined */
6 
7 #include <stdio.h>
8 
9 #include "h.h"
10 #include "snotypes.h"
11 #include "lib.h"
12 
13 real_t
mstime()14 mstime() {
15     /* use time() to get elapsed time? need to keep base (see borland vers) */
16     return 0.0;
17 }
18