mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-01 18:42:40 +00:00
fix checks
This commit is contained in:
parent
1d880ca29e
commit
41e6ef85bc
3 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
#include <dirent.h>
|
||||
|
||||
int main(int, char**) {
|
||||
int main(int argc, char** argv) {
|
||||
struct dirent deTest = { };
|
||||
unsigned char deType = deTest.d_type;
|
||||
return 0;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include <locale.h>
|
||||
|
||||
int main(int, char**) {
|
||||
int main(int argc, char** argv) {
|
||||
setlocale(LC_CTYPE,"");
|
||||
setlocale(LC_MESSAGES,"");
|
||||
return 0;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include <sys/io.h>
|
||||
|
||||
int main(int, char**) {
|
||||
int main(int argc, char** argv) {
|
||||
inb(0x61);
|
||||
outb(0x00,0x61);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue