12 lines
186 B
C
12 lines
186 B
C
#ifndef QUARK_SYSCALLARG_H
|
|
#define QUARK_SYSCALLARG_H
|
|
|
|
typedef union
|
|
{
|
|
long int signed_int;
|
|
unsigned long int unsigned_int;
|
|
void *ptr;
|
|
char *str;
|
|
} syscall_arg_t;
|
|
|
|
#endif |