Some #include updates.

-Erik
This commit is contained in:
Eric Andersen
2000-08-10 17:59:11 +00:00
parent 40406e6bad
commit 88f50b6bf5
53 changed files with 12 additions and 57 deletions

View File

@@ -81,7 +81,7 @@ int dumpkmap_main(int argc, char **argv)
errorMsg("ioctl returned: %s, %s, %s, %xqq\n",strerror(errno),(char *)&ke.kb_index,(char *)&ke.kb_table,(int)&ke.kb_value);
}
else {
write(1,&ke.kb_value,2);
write(1,(void*)&ke.kb_value,2);
}
}

View File

@@ -18,7 +18,6 @@
#include <errno.h>
#include <signal.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <sys/kd.h>

View File

@@ -15,7 +15,6 @@
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
#include <errno.h>
#include <sys/ioctl.h>