fix checks
This commit is contained in:
parent
1d880ca29e
commit
41e6ef85bc
|
@ -1,6 +1,6 @@
|
||||||
#include <dirent.h>
|
#include <dirent.h>
|
||||||
|
|
||||||
int main(int, char**) {
|
int main(int argc, char** argv) {
|
||||||
struct dirent deTest = { };
|
struct dirent deTest = { };
|
||||||
unsigned char deType = deTest.d_type;
|
unsigned char deType = deTest.d_type;
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#include <locale.h>
|
#include <locale.h>
|
||||||
|
|
||||||
int main(int, char**) {
|
int main(int argc, char** argv) {
|
||||||
setlocale(LC_CTYPE,"");
|
setlocale(LC_CTYPE,"");
|
||||||
setlocale(LC_MESSAGES,"");
|
setlocale(LC_MESSAGES,"");
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#include <sys/io.h>
|
#include <sys/io.h>
|
||||||
|
|
||||||
int main(int, char**) {
|
int main(int argc, char** argv) {
|
||||||
inb(0x61);
|
inb(0x61);
|
||||||
outb(0x00,0x61);
|
outb(0x00,0x61);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue