12 lines
188 B
C
12 lines
188 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 |