diff options
-rw-r--r-- | XWindow.c | 7 | ||||
-rw-r--r-- | battery.c | 8 | ||||
-rw-r--r-- | filter.c | 7 | ||||
-rw-r--r-- | mail.c | 8 | ||||
-rw-r--r-- | seti.c | 8 | ||||
-rw-r--r-- | system.c | 8 |
6 files changed, 35 insertions, 11 deletions
@@ -1,4 +1,4 @@ -/* $Id: XWindow.c,v 1.25 2001/03/16 16:40:17 ltoetsch Exp $ +/* $Id: XWindow.c,v 1.26 2001/08/05 17:13:29 reinelt Exp $ * * X11 Driver for LCD4Linux * @@ -20,6 +20,10 @@ * * * $Log: XWindow.c,v $ + * Revision 1.26 2001/08/05 17:13:29 reinelt + * + * cleaned up inlude of sys/time.h and time.h + * * Revision 1.25 2001/03/16 16:40:17 ltoetsch * implemented time bar * @@ -546,4 +550,3 @@ LCD XWindow[] = { { "X11",0,0,0,0,BARS,0,xlcdinit,xlcdclear,xlcdput,xlcdbar,NULL,xlcdflush,xlcdquit }, { NULL } }; - @@ -1,4 +1,4 @@ -/* $Id: battery.c,v 1.2 2001/03/02 11:04:08 reinelt Exp $ +/* $Id: battery.c,v 1.3 2001/08/05 17:13:29 reinelt Exp $ * * APM and ACPI specific functions * @@ -20,6 +20,10 @@ * * * $Log: battery.c,v $ + * Revision 1.3 2001/08/05 17:13:29 reinelt + * + * cleaned up inlude of sys/time.h and time.h + * * Revision 1.2 2001/03/02 11:04:08 reinelt * * cosmetic cleanups (comment headers) @@ -43,7 +47,7 @@ #include <string.h> #include <unistd.h> #include <errno.h> -#include <sys/time.h> +#include <time.h> #include <sys/stat.h> #include <sys/types.h> @@ -1,4 +1,4 @@ -/* $Id: filter.c,v 1.4 2000/03/23 07:24:48 reinelt Exp $ +/* $Id: filter.c,v 1.5 2001/08/05 17:13:29 reinelt Exp $ * * smooth and damp functions * @@ -20,6 +20,10 @@ * * * $Log: filter.c,v $ + * Revision 1.5 2001/08/05 17:13:29 reinelt + * + * cleaned up inlude of sys/time.h and time.h + * * Revision 1.4 2000/03/23 07:24:48 reinelt * * PPM driver up and running (but slow!) @@ -52,6 +56,7 @@ #include <stdio.h> #include <string.h> #include <math.h> +#include <time.h> #include <sys/time.h> #include "cfg.h" @@ -1,4 +1,4 @@ -/* $Id: mail.c,v 1.8 2001/03/15 15:49:23 ltoetsch Exp $ +/* $Id: mail.c,v 1.9 2001/08/05 17:13:29 reinelt Exp $ * * email specific functions * @@ -20,6 +20,10 @@ * * * $Log: mail.c,v $ + * Revision 1.9 2001/08/05 17:13:29 reinelt + * + * cleaned up inlude of sys/time.h and time.h + * * Revision 1.8 2001/03/15 15:49:23 ltoetsch * fixed compile HD44780.c, cosmetics * @@ -69,9 +73,9 @@ #include <string.h> #include <unistd.h> #include <fcntl.h> +#include <time.h> #include <sys/ioctl.h> #include <sys/types.h> -#include <sys/time.h> #include <sys/stat.h> #include "cfg.h" @@ -1,4 +1,4 @@ -/* $Id: seti.c,v 1.4 2001/03/08 09:02:04 reinelt Exp $ +/* $Id: seti.c,v 1.5 2001/08/05 17:13:29 reinelt Exp $ * * seti@home specific functions * @@ -20,6 +20,10 @@ * * * $Log: seti.c,v $ + * Revision 1.5 2001/08/05 17:13:29 reinelt + * + * cleaned up inlude of sys/time.h and time.h + * * Revision 1.4 2001/03/08 09:02:04 reinelt * * seti client cleanup @@ -57,9 +61,9 @@ #include <unistd.h> #include <fcntl.h> #include <errno.h> +#include <time.h> #include <sys/ioctl.h> #include <sys/types.h> -#include <sys/time.h> #include "cfg.h" #include "debug.h" @@ -1,4 +1,4 @@ -/* $Id: system.c,v 1.23 2001/03/13 08:34:15 reinelt Exp $ +/* $Id: system.c,v 1.24 2001/08/05 17:13:29 reinelt Exp $ * * system status retreivement * @@ -20,6 +20,10 @@ * * * $Log: system.c,v $ + * Revision 1.24 2001/08/05 17:13:29 reinelt + * + * cleaned up inlude of sys/time.h and time.h + * * Revision 1.23 2001/03/13 08:34:15 reinelt * * corrected a off-by-one bug with sensors @@ -188,7 +192,7 @@ #include <string.h> #include <unistd.h> #include <errno.h> -#include <sys/time.h> +#include <time.h> #include <sys/stat.h> #include <sys/types.h> #include <sys/utsname.h> |