diff options
author | reinelt <> | 2000-07-31 06:46:35 +0000 |
---|---|---|
committer | reinelt <> | 2000-07-31 06:46:35 +0000 |
commit | 06b37e4a51870eca00dc50dfb12d8b2dae027071 (patch) | |
tree | bcd8c3489b250b7a4d5e70b1eff01d6080da5174 /HD44780.c | |
parent | e5e83f5c812c2976354bb2293f86ca72aab92bc9 (diff) | |
download | lcd4linux-06b37e4a51870eca00dc50dfb12d8b2dae027071.tar.gz |
[lcd4linux @ 2000-07-31 06:46:35 by reinelt]
eliminated some compiler warnings with glibc
Diffstat (limited to 'HD44780.c')
-rw-r--r-- | HD44780.c | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: HD44780.c,v 1.4 2000/04/15 16:56:52 reinelt Exp $ +/* $Id: HD44780.c,v 1.5 2000/07/31 06:46:35 reinelt Exp $ * * driver for display modules based on the HD44780 chip * @@ -20,6 +20,10 @@ * * * $Log: HD44780.c,v $ + * Revision 1.5 2000/07/31 06:46:35 reinelt + * + * eliminated some compiler warnings with glibc + * * Revision 1.4 2000/04/15 16:56:52 reinelt * * moved delay loops to udelay.c @@ -59,11 +63,12 @@ #include <stdlib.h> #include <stdio.h> +#include <string.h> #include <unistd.h> #include <time.h> #include <signal.h> #include <errno.h> -#include <asm/io.h> +#include <sys/io.h> #include "debug.h" #include "cfg.h" |