Subversion Repositories HelenOS

Rev

Rev 1819 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1819 Rev 1888
Line 33... Line 33...
33
/**
33
/**
34
 * @file
34
 * @file
35
 * @brief   Wrapper for explicit 64-bit arguments passed to syscalls.
35
 * @brief   Wrapper for explicit 64-bit arguments passed to syscalls.
36
 */
36
 */
37
 
37
 
38
#ifndef __SYSARG64_H__
38
#ifndef KERN_SYSARG64_H_
39
#define __SYSARG64_H__
39
#define KERN_SYSARG64_H_
40
 
40
 
41
typedef struct {
41
typedef struct {
42
    unsigned long long value;
42
    unsigned long long value;
43
} sysarg64_t;
43
} sysarg64_t;
44
 
44