Buncha changes and fixes
This commit is contained in:
11
include/types/syscallarg.h
Normal file
11
include/types/syscallarg.h
Normal file
@@ -0,0 +1,11 @@
|
||||
#ifndef _QUARK_SYSCALLARG_H
|
||||
#define _QUARK_SYSCALLARG_H
|
||||
|
||||
typedef union
|
||||
{
|
||||
long int signed_int;
|
||||
unsigned long int unsigned_int;
|
||||
void *ptr;
|
||||
} syscall_arg_t;
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user