From: Rodrigo D. <rda...@us...> - 2002-04-23 00:46:00
|
Update of /cvsroot/linuxconsole/ruby/utils In directory usw-pr-cvs1:/tmp/cvs-serv9515/utils Modified Files: fftest.c Log Message: Quick fix for type problems in fftest.c Index: fftest.c =================================================================== RCS file: /cvsroot/linuxconsole/ruby/utils/fftest.c,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- fftest.c 8 Apr 2002 21:16:13 -0000 1.18 +++ fftest.c 23 Apr 2002 00:45:55 -0000 1.19 @@ -24,14 +24,18 @@ * Johann Deneux <de...@if...> */ +// Quick fix for #define mess +#define uint16_t unsigned short +#define uint32_t unsigned short + #include <stdio.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> -#include <linux/input.h> #include <unistd.h> #include <string.h> #include <sys/ioctl.h> +#include <linux/input.h> #define BITS_PER_LONG (sizeof(long) * 8) #define OFF(x) ((x)%BITS_PER_LONG) |